python310Packages.calysto-scheme: don't mix python versions

This commit is contained in:
Sandro Jäckel 2023-04-07 21:15:03 +02:00
parent a6ab4bfac4
commit 49dfd62eb6
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,9 +1,12 @@
{ lib { lib
, python3 , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, metakernel
, pytestCheckHook
, yasi
}: }:
python3.pkgs.buildPythonPackage rec { buildPythonPackage rec {
pname = "calysto-scheme"; pname = "calysto-scheme";
version = "1.4.7"; version = "1.4.7";
format = "setuptools"; format = "setuptools";
@ -15,11 +18,15 @@ python3.pkgs.buildPythonPackage rec {
hash = "sha256-5InImTbucggjf/tl8K31ZtLrwu5hqvggl7sYb0eqIEg="; hash = "sha256-5InImTbucggjf/tl8K31ZtLrwu5hqvggl7sYb0eqIEg=";
}; };
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = [
yasi yasi
metakernel metakernel
]; ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "calysto_scheme" ]; pythonImportsCheck = [ "calysto_scheme" ];
meta = with lib; { meta = with lib; {