pythonPackages.pynrrd: init at 0.4.2
This commit is contained in:
parent
018e2972c7
commit
8f1994c2cc
27
pkgs/development/python-modules/pynrrd/default.nix
Normal file
27
pkgs/development/python-modules/pynrrd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user