Merge pull request #109814 from fabaff/waqiasync
This commit is contained in:
commit
7296caf2d0
32
pkgs/development/python-modules/waqiasync/default.nix
Normal file
32
pkgs/development/python-modules/waqiasync/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -913,7 +913,7 @@
|
|||||||
"vultr" = ps: with ps; [ vultr ];
|
"vultr" = ps: with ps; [ vultr ];
|
||||||
"w800rf32" = ps: with ps; [ ]; # missing inputs: pyW800rf32
|
"w800rf32" = ps: with ps; [ ]; # missing inputs: pyW800rf32
|
||||||
"wake_on_lan" = ps: with ps; [ wakeonlan ];
|
"wake_on_lan" = ps: with ps; [ wakeonlan ];
|
||||||
"waqi" = ps: with ps; [ ]; # missing inputs: waqiasync
|
"waqi" = ps: with ps; [ waqiasync ];
|
||||||
"water_heater" = ps: with ps; [ ];
|
"water_heater" = ps: with ps; [ ];
|
||||||
"waterfurnace" = ps: with ps; [ waterfurnace ];
|
"waterfurnace" = ps: with ps; [ waterfurnace ];
|
||||||
"watson_iot" = ps: with ps; [ ]; # missing inputs: ibmiotf
|
"watson_iot" = ps: with ps; [ ]; # missing inputs: ibmiotf
|
||||||
|
@ -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…
x
Reference in New Issue
Block a user