pythonPackages.pynrrd: init at 0.4.2

This commit is contained in:
Ben Darwin 2020-01-14 12:59:23 -05:00 committed by Jon
parent 018e2972c7
commit 8f1994c2cc
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytest
}:
buildPythonPackage rec {
pname = "pynrrd";
version = "0.4.2";
src = fetchFromGitHub {
owner = "mhe";
repo = pname;
rev = "v${version}";
sha256 = "1wn3ara3i19fi1y9a5j4imyczpa6dkkzd5djggxg4kkl1ff9awrj";
};
propagatedBuildInputs = [ numpy ];
meta = with lib; {
homepage = https://github.com/mhe/pynrrd;
description = "Simple pure-Python reader for NRRD files";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}

View file

@ -4941,6 +4941,8 @@ in {
pynmea2 = callPackage ../development/python-modules/pynmea2 {};
pynrrd = callPackage ../development/python-modules/pynrrd { };
pynzb = callPackage ../development/python-modules/pynzb { };
process-tests = callPackage ../development/python-modules/process-tests { };