evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / auroranoaa / default.nix
blob8dcec269dced2261d522a52ae5dfb9040669563f
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "auroranoaa";
12   version = "0.0.5";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "djtimca";
19     repo = "aurora-api";
20     rev = "refs/tags/${version}";
21     hash = "sha256-bQDFSbYFsGtvPuJNMykynOpBTIeloUoCVRtIuHXR4n0=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Project has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "auroranoaa" ];
33   meta = with lib; {
34     description = "Python wrapper for the Aurora API";
35     homepage = "https://github.com/djtimca/aurora-api";
36     changelog = "https://github.com/djtimca/aurora-api/releases/tag/${version}";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ fab ];
39   };