ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / sdds / default.nix
blob4d26c2ebf39185a27206ba04154a9a99bedbee98
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "sdds";
11   version = "0.3.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "pylhc";
18     repo = pname;
19     rev = "refs/tags/${version}";
20     hash = "sha256-lb4awMQ7GE7m2N2yiCpJ976I2j8hE98/93zCX7Rp4qU=";
21   };
23   propagatedBuildInputs = [
24     numpy
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "sdds"
33   ];
35   meta = with lib; {
36     description = "Module to handle SDDS files";
37     homepage = "https://pylhc.github.io/sdds/";
38     license = with licenses; [ mit ];
39     maintainers = with maintainers; [ veprbl ];
40   };