mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
Merge pull request #110597 from fabaff/aioeafm
python3Packages.aioeafm: init at 1.0.0
This commit is contained in:
commit
1a495d604f
3 changed files with 47 additions and 1 deletions
44
pkgs/development/python-modules/aioeafm/default.nix
Normal file
44
pkgs/development/python-modules/aioeafm/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, async-timeout
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry
|
||||||
|
, pytest-aiohttp
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-cov
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aioeafm";
|
||||||
|
version = "1.0.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Jc2k";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "048cxn3fw2hynp27zlizq7k8ps67qq9sib1ddgirnxy5zc87vgkc";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ poetry ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ aiohttp ];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-aiohttp
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-cov
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "aioeafm" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python client for access the Real Time flood monitoring API";
|
||||||
|
homepage = "https://github.com/Jc2k/aioeafm";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -194,7 +194,7 @@
|
||||||
"dweet" = ps: with ps; [ ]; # missing inputs: dweepy
|
"dweet" = ps: with ps; [ ]; # missing inputs: dweepy
|
||||||
"dynalite" = ps: with ps; [ ]; # missing inputs: dynalite_devices
|
"dynalite" = ps: with ps; [ ]; # missing inputs: dynalite_devices
|
||||||
"dyson" = ps: with ps; [ aiohttp-cors zeroconf ]; # missing inputs: libpurecool
|
"dyson" = ps: with ps; [ aiohttp-cors zeroconf ]; # missing inputs: libpurecool
|
||||||
"eafm" = ps: with ps; [ ]; # missing inputs: aioeafm
|
"eafm" = ps: with ps; [ aioeafm ];
|
||||||
"ebox" = ps: with ps; [ ]; # missing inputs: pyebox
|
"ebox" = ps: with ps; [ ]; # missing inputs: pyebox
|
||||||
"ebusd" = ps: with ps; [ ]; # missing inputs: ebusdpy
|
"ebusd" = ps: with ps; [ ]; # missing inputs: ebusdpy
|
||||||
"ecoal_boiler" = ps: with ps; [ ]; # missing inputs: ecoaliface
|
"ecoal_boiler" = ps: with ps; [ ]; # missing inputs: ecoaliface
|
||||||
|
|
|
@ -206,6 +206,8 @@ in {
|
||||||
|
|
||||||
aiodns = callPackage ../development/python-modules/aiodns { };
|
aiodns = callPackage ../development/python-modules/aiodns { };
|
||||||
|
|
||||||
|
aioeafm = callPackage ../development/python-modules/aioeafm { };
|
||||||
|
|
||||||
aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { };
|
aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { };
|
||||||
|
|
||||||
aioeventlet = callPackage ../development/python-modules/aioeventlet { };
|
aioeventlet = callPackage ../development/python-modules/aioeventlet { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue