3f0f9a017d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-gsd/versions (cherry picked from commit 7d2c71a6e12e3cc32c2509f10b0016c9834433c9)
28 lines
545 B
Nix
28 lines
545 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.6.1";
|
|
pname = "gsd";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "18icw5cbsq4gnhx4vsjwhxzcx11mbnz6kmwgrylkf82m7m1v2921";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|