forked from mirrors/nixpkgs
pythonPackages.gsd: init at 1.5.2
This commit is contained in:
parent
343a5b4e63
commit
08d2c98e2b
27
pkgs/development/python-modules/gsd/default.nix
Normal file
27
pkgs/development/python-modules/gsd/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -340,6 +340,8 @@ in {
|
||||||
|
|
||||||
goocalendar = callPackage ../development/python-modules/goocalendar { };
|
goocalendar = callPackage ../development/python-modules/goocalendar { };
|
||||||
|
|
||||||
|
gsd = callPackage ../development/python-modules/gsd { };
|
||||||
|
|
||||||
gssapi = callPackage ../development/python-modules/gssapi { };
|
gssapi = callPackage ../development/python-modules/gssapi { };
|
||||||
|
|
||||||
h5py = callPackage ../development/python-modules/h5py {
|
h5py = callPackage ../development/python-modules/h5py {
|
||||||
|
|
Loading…
Reference in a new issue