Merge pull request #108616 from fabaff/coronavirus
This commit is contained in:
commit
e65e269b5e
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, aiohttp
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "coronavirus";
|
||||||
|
version = "1.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nabucasa";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0mx6ifp8irj3669c67hs9r79k8gar6j4aq7d4ji21pllyhyahdwm";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests are present
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "coronavirus" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python client for getting Corona virus info";
|
||||||
|
homepage = "https://github.com/nabucasa/coronavirus";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -137,7 +137,7 @@
|
||||||
"control4" = ps: with ps; [ ]; # missing inputs: pyControl4
|
"control4" = ps: with ps; [ ]; # missing inputs: pyControl4
|
||||||
"conversation" = ps: with ps; [ aiohttp-cors ];
|
"conversation" = ps: with ps; [ aiohttp-cors ];
|
||||||
"coolmaster" = ps: with ps; [ ]; # missing inputs: pycoolmasternet-async
|
"coolmaster" = ps: with ps; [ ]; # missing inputs: pycoolmasternet-async
|
||||||
"coronavirus" = ps: with ps; [ ]; # missing inputs: coronavirus
|
"coronavirus" = ps: with ps; [ coronavirus ];
|
||||||
"counter" = ps: with ps; [ ];
|
"counter" = ps: with ps; [ ];
|
||||||
"cover" = ps: with ps; [ ];
|
"cover" = ps: with ps; [ ];
|
||||||
"cppm_tracker" = ps: with ps; [ ]; # missing inputs: clearpasspy
|
"cppm_tracker" = ps: with ps; [ ]; # missing inputs: clearpasspy
|
||||||
|
|
|
@ -1384,6 +1384,8 @@ in {
|
||||||
|
|
||||||
cornice = callPackage ../development/python-modules/cornice { };
|
cornice = callPackage ../development/python-modules/cornice { };
|
||||||
|
|
||||||
|
coronavirus = callPackage ../development/python-modules/coronavirus { };
|
||||||
|
|
||||||
cot = callPackage ../development/python-modules/cot { };
|
cot = callPackage ../development/python-modules/cot { };
|
||||||
|
|
||||||
covCore = callPackage ../development/python-modules/cov-core { };
|
covCore = callPackage ../development/python-modules/cov-core { };
|
||||||
|
|
Loading…
Reference in New Issue