python310Packages.calysto-scheme: don't mix python versions
This commit is contained in:
parent
a6ab4bfac4
commit
49dfd62eb6
1 changed files with 10 additions and 3 deletions
|
@ -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; {
|
||||||
|
|
Loading…
Reference in a new issue