Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / co2signal / default.nix
blob9af604c5dd84f2e21d6a42cc5e16d462ab1f73c7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "co2signal";
9   version = "0.4.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "CO2Signal";
15     hash = "sha256-8YdYbknLICRrZloGUZuscv5e1LIDZBcCPKZs6EMaNuo=";
16   };
18   propagatedBuildInputs = [ requests ];
19   # Modules has no tests
20   doCheck = false;
22   pythonImportsCheck = [ "CO2Signal" ];
24   meta = with lib; {
25     description = "A package to access the CO2 Signal API ";
26     homepage = "https://github.com/danielsjf/CO2Signal";
27     license = licenses.gpl3Only;
28     maintainers = with maintainers; [ plabadens ];
29   };