nixpkgs/pkgs/development/python-modules/gsd/default.nix

28 lines
557 B
Nix
Raw Normal View History

2018-09-21 19:16:14 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
}:
buildPythonPackage rec {
2019-04-24 16:42:48 +00:00
version = "1.6.2";
2018-09-21 19:16:14 +00:00
pname = "gsd";
src = fetchPypi {
inherit pname version;
2019-04-24 16:42:48 +00:00
sha256 = "58a6669f2375936810d74c3ee7e62c5616acf9e15aa32603701e55ab6fada5f5";
2018-09-21 19:16:14 +00:00
};
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 ];
};
}