Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nsapi / default.nix
blob4e3a7bc5bf3c5b4de8bf759b79eb5ec01d262793
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , future
5 , pythonOlder
6 , pytz
7 }:
9 buildPythonPackage rec {
10   pname = "nsapi";
11   version = "3.0.5";
12   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "aquatix";
17     repo = "ns-api";
18     rev = "v${version}";
19     sha256 = "0i1zkvi4mrhkh1gxzpa54mq8mb76s9nf3jxxhpqia56nkq8f8krb";
20   };
22   propagatedBuildInputs = [
23     future
24     pytz
25   ];
27   # Project has no tests
28   doCheck = false;
30   pythonImportsCheck = [ "ns_api" ];
32   meta = with lib; {
33     description = "Python module to query routes of the Dutch railways";
34     homepage = "https://github.com/aquatix/ns-api/";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };