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
|
||||
, python3
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, metakernel
|
||||
, pytestCheckHook
|
||||
, yasi
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonPackage rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "calysto-scheme";
|
||||
version = "1.4.7";
|
||||
format = "setuptools";
|
||||
|
@ -15,11 +18,15 @@ python3.pkgs.buildPythonPackage rec {
|
|||
hash = "sha256-5InImTbucggjf/tl8K31ZtLrwu5hqvggl7sYb0eqIEg=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
yasi
|
||||
metakernel
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "calysto_scheme" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue