python3Packages.waqiasync: init at 1.0.0

gstqt5
Fabian Affolter 2021-01-18 20:23:48 +01:00
parent 156071bfc8
commit 34d0facd77
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "waqiasync";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1yxls7ywfg954c3vxgnp98qa1b8dsq9b2fld11fb9sx1k4mjc29d";
};
propagatedBuildInputs = [
aiohttp
async-timeout
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "waqiasync" ];
meta = with lib; {
description = "Python library for http://aqicn.org";
homepage = "https://github.com/andrey-git/waqi-async";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -8068,6 +8068,8 @@ in {
warrant = callPackage ../development/python-modules/warrant { };
waqiasync = callPackage ../development/python-modules/waqiasync { };
wasabi = callPackage ../development/python-modules/wasabi { };
wasm = callPackage ../development/python-modules/wasm { };