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
, 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; {