ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / co2signal / default.nix
blob2c7aeb4ceaebfbf8a6d6f81b259001cbd2edf02c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "co2signal";
9   version = "0.4.2";
11   src = fetchPypi {
12     inherit version;
13     pname = "CO2Signal";
14     hash = "sha256-8YdYbknLICRrZloGUZuscv5e1LIDZBcCPKZs6EMaNuo=";
15   };
17   propagatedBuildInputs = [ requests ];
18   # Modules has no tests
19   doCheck = false;
21   pythonImportsCheck = [ "CO2Signal" ];
23   meta = with lib; {
24     description = "A package to access the CO2 Signal API ";
25     homepage = "https://github.com/danielsjf/CO2Signal";
26     license = licenses.gpl3Only;
27     maintainers = with maintainers; [ plabadens ];
28   };