blob: 147e9c6e6de855367e1eeb02c1808c1e337ad40f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "co2signal";
version = "0.4.2";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "CO2Signal";
hash = "sha256-8YdYbknLICRrZloGUZuscv5e1LIDZBcCPKZs6EMaNuo=";
};
propagatedBuildInputs = [ requests ];
# Modules has no tests
doCheck = false;
pythonImportsCheck = [ "CO2Signal" ];
meta = {
description = "Package to access the CO2 Signal API";
homepage = "https://github.com/danielsjf/CO2Signal";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ plabadens ];
};
}
|