pythonPackages.gsd: init at 1.5.2

This commit is contained in:
Chris Ostrouchov 2018-09-21 15:16:14 -04:00 committed by Frederik Rietdijk
parent 343a5b4e63
commit 08d2c98e2b
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
}:
buildPythonPackage rec {
version = "1.5.2";
pname = "gsd";
src = fetchPypi {
inherit pname version;
sha256 = "0ce73a9bc7b79968a2b96cc2b0934e2cbe11700adbd02b4b492fea1e3d4d51f4";
};
propagatedBuildInputs = [ numpy ];
# tests not packaged with gsd
doCheck = false;
meta = with stdenv.lib; {
homepage = https://bitbucket.org/glotzer/gsd;
description = "General simulation data file format";
license = licenses.bsd2;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -340,6 +340,8 @@ in {
goocalendar = callPackage ../development/python-modules/goocalendar { };
gsd = callPackage ../development/python-modules/gsd { };
gssapi = callPackage ../development/python-modules/gssapi { };
h5py = callPackage ../development/python-modules/h5py {