python312Packages.pynrrd: 1.0.0 -> 1.1.1

This commit is contained in:
Ben Darwin
2024-11-28 18:03:21 -05:00
parent 1635ae0b38
commit 4baf980b7b
@@ -3,15 +3,16 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
numpy,
nptyping,
typing-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pynrrd";
version = "1.0.0";
format = "setuptools";
version = "1.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -19,21 +20,25 @@ buildPythonPackage rec {
owner = "mhe";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-R/bUItF2BaKTFdMNBHFJKq0jSX6z49e8CGXENUn07SU=";
hash = "sha256-B/G46/9Xf1LRu02p0X4/UeW1RYotSXKXRO9VZDPhkNU=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
numpy
nptyping
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "nrrd" ];
meta = with lib; {
meta = {
homepage = "https://github.com/mhe/pynrrd";
description = "Simple pure-Python reader for NRRD files";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
changelog = "https://github.com/mhe/pynrrd/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}