Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / auroranoaa / default.nix
blobf906b4e42bcb532a18a367f82ea4fcbbe71cfcbf
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "auroranoaa";
10   version = "0.0.3";
11   format = "setuptools";
12   disabled = pythonOlder "3.6";
14   src = fetchFromGitHub {
15     owner = "djtimca";
16     repo = "aurora-api";
17     rev = version;
18     hash = "sha256-ho0O5aEHCKaTuWh2eW2kY5a7dVGIGBLm4nKxAMq0bZ4=";
19   };
21   propagatedBuildInputs = [ aiohttp ];
23   # Project has no tests
24   doCheck = false;
25   pythonImportsCheck = [ "auroranoaa" ];
27   meta = with lib; {
28     description = "Python wrapper for the Aurora API";
29     homepage = "https://github.com/djtimca/aurora-api";
30     license = with licenses; [ asl20 ];
31     maintainers = with maintainers; [ fab ];
32   };