mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
pythonPackages.gsd: freeze at 1.7.0
This commit is contained in:
parent
bd51071ca1
commit
697be7554a
27
pkgs/development/python-modules/gsd/1.7.nix
Normal file
27
pkgs/development/python-modules/gsd/1.7.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "1.7.0";
|
||||
pname = "gsd";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0fpk69wachyydpk9cbs901m7hkwrrvq24ykxsrz62km9ql8lr2vp";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -643,7 +643,10 @@ in {
|
||||
inherit (pkgs) graphviz;
|
||||
};
|
||||
|
||||
gsd = callPackage ../development/python-modules/gsd { };
|
||||
gsd = if isPy27 then
|
||||
callPackage ../development/python-modules/gsd/1.7.nix { }
|
||||
else
|
||||
callPackage ../development/python-modules/gsd { };
|
||||
|
||||
gssapi = callPackage ../development/python-modules/gssapi {
|
||||
inherit (pkgs) darwin krb5Full;
|
||||
|
Loading…
Reference in New Issue
Block a user