bat: 0.24.0 -> 0.25.0 (#371913)
[NixPkgs.git] / pkgs / development / python-modules / sdds / default.nix
blobec1aa7461196eba6a1440dfcfeaf83feaf0bd9c2
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   numpy,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "sdds";
12   version = "0.4.2";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "pylhc";
19     repo = pname;
20     tag = "v${version}";
21     hash = "sha256-h1gEqzmKCUr8+w3Fv8lv35/0itZwela//AQsD3u0UJA=";
22   };
24   propagatedBuildInputs = [ numpy ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   pythonImportsCheck = [ "sdds" ];
30   meta = with lib; {
31     description = "Module to handle SDDS files";
32     homepage = "https://pylhc.github.io/sdds/";
33     license = with licenses; [ mit ];
34     maintainers = with maintainers; [ veprbl ];
35   };