about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gsd
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-09-30 08:06:32 -0700
committerJon <jonringer@users.noreply.github.com>2019-10-18 08:55:20 -0700
commit697be7554a47f77a63c2a686bac3a96b0ea64bdf (patch)
treed2b34e9f72ca52aae4cc51cc55ae7e0c3915a403 /pkgs/development/python-modules/gsd
parentbd51071ca134954253ca411d00b2a1ba33ca1ee2 (diff)
pythonPackages.gsd: freeze at 1.7.0
Diffstat (limited to 'pkgs/development/python-modules/gsd')
-rw-r--r--pkgs/development/python-modules/gsd/1.7.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/gsd/1.7.nix b/pkgs/development/python-modules/gsd/1.7.nix
new file mode 100644
index 0000000000000..567cc6f8930da
--- /dev/null
+++ b/pkgs/development/python-modules/gsd/1.7.nix
@@ -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 ];
+  };
+}