My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pynrrd/default.nix

36 lines
668 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pythonOlder
}:
buildPythonPackage rec {
pname = "pynrrd";
version = "0.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mhe";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-4UM2NAKWfsjxAoLQCFSPVKG5GukxqppywqvLM0V/dIs=";
};
propagatedBuildInputs = [
numpy
];
pythonImportsCheck = [
"nrrd"
];
meta = with lib; {
homepage = "https://github.com/mhe/pynrrd";
description = "Simple pure-Python reader for NRRD files";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}