about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gsd/1.7.nix
blob: 6e6f0504aa7221df000340d9d4815ac89bb15604 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 ];
  };
}