python3Packages.waqiasync: init at 1.0.0
This commit is contained in:
parent
156071bfc8
commit
34d0facd77
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8068,6 +8068,8 @@ in {
|
||||||
|
|
||||||
warrant = callPackage ../development/python-modules/warrant { };
|
warrant = callPackage ../development/python-modules/warrant { };
|
||||||
|
|
||||||
|
waqiasync = callPackage ../development/python-modules/waqiasync { };
|
||||||
|
|
||||||
wasabi = callPackage ../development/python-modules/wasabi { };
|
wasabi = callPackage ../development/python-modules/wasabi { };
|
||||||
|
|
||||||
wasm = callPackage ../development/python-modules/wasm { };
|
wasm = callPackage ../development/python-modules/wasm { };
|
||||||
|
|
Loading…
Reference in New Issue