python310Packages.pynrrd: disable on older Python releases

-add pythonImportsCheck
This commit is contained in:
Fabian Affolter 2022-04-29 08:50:31 +02:00 committed by GitHub
parent db25cc63f1
commit 20bd079b35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,20 +2,30 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, numpy , numpy
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pynrrd"; pname = "pynrrd";
version = "0.4.3"; version = "0.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mhe"; owner = "mhe";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-4UM2NAKWfsjxAoLQCFSPVKG5GukxqppywqvLM0V/dIs="; hash = "sha256-4UM2NAKWfsjxAoLQCFSPVKG5GukxqppywqvLM0V/dIs=";
}; };
propagatedBuildInputs = [ numpy ]; propagatedBuildInputs = [
numpy
];
pythonImportsCheck = [
"nrrd"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mhe/pynrrd"; homepage = "https://github.com/mhe/pynrrd";