Commit 8f1994c2 authored by Ben Darwin's avatar Ben Darwin Committed by Jon
Browse files

pythonPackages.pynrrd: init at 0.4.2

parent 018e2972
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };