linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pynrrd / default.nix
blob7a136176cf64f850e4f370742c967854fe72c69f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , pytest
6 }:
8 buildPythonPackage rec {
9   pname = "pynrrd";
10   version = "0.4.2";
12   src = fetchFromGitHub {
13     owner = "mhe";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "1wn3ara3i19fi1y9a5j4imyczpa6dkkzd5djggxg4kkl1ff9awrj";
17   };
19   propagatedBuildInputs = [ numpy ];
21   meta = with lib; {
22     homepage = "https://github.com/mhe/pynrrd";
23     description = "Simple pure-Python reader for NRRD files";
24     license = licenses.mit;
25     maintainers = with maintainers; [ bcdarwin ];
26   };