ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / gsd / default.nix
blobab64a78c103fb3c220d4bbbd422c4f3b781f95ba
1 { lib
2 , buildPythonPackage
3 , cython
4 , fetchFromGitHub
5 , numpy
6 , pytestCheckHook
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "gsd";
12   version = "2.6.1";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "glotzerlab";
19     repo = pname;
20     rev = "refs/tags/v${version}";
21     hash = "sha256-vQutfkSilfgRHuu/THWMG6bmkT1eKlAAniQM4DP8mqI=";
22   };
24   nativeBuildInputs = [
25     cython
26   ];
28   propagatedBuildInputs = [
29     numpy
30   ];
32   checkInputs = [
33     pytestCheckHook
34   ];
36   pythonImportsCheck = [
37     "gsd"
38   ];
41   preCheck = ''
42     pushd gsd/test
43   '';
45   postCheck = ''
46     popd
47   '';
49   meta = with lib; {
50     description = "General simulation data file format";
51     homepage = "https://github.com/glotzerlab/gsd";
52     license = licenses.bsd2;
53     maintainers = with maintainers; [ costrouc ];
54   };