Merge pull request #223875 from fabaff/iceportal
python310Packages.iceportal: init at 1.1.1
This commit is contained in:
commit
50c6aa921c
2 changed files with 53 additions and 0 deletions
51
pkgs/development/python-modules/iceportal/default.nix
Normal file
51
pkgs/development/python-modules/iceportal/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, httpx
|
||||
, pytest-asyncio
|
||||
, pytest-httpx
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "iceportal";
|
||||
version = "1.1.1";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "home-assistant-ecosystem";
|
||||
repo = "python-iceportal";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-edG4tF5nYaEOCcbunetYNL9moi9vA75IOkorDuLEx1c=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
httpx
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytest-httpx
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"iceportal"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for getting data from the ICE Portal";
|
||||
homepage = "https://github.com/home-assistant-ecosystem/python-iceportal";
|
||||
changelog = "https://github.com/home-assistant-ecosystem/python-iceportal/releases/tag/${version}";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -4612,6 +4612,8 @@ self: super: with self; {
|
|||
|
||||
icecream = callPackage ../development/python-modules/icecream { };
|
||||
|
||||
iceportal = callPackage ../development/python-modules/iceportal { };
|
||||
|
||||
icmplib = callPackage ../development/python-modules/icmplib { };
|
||||
|
||||
icnsutil = callPackage ../development/python-modules/icnsutil { };
|
||||
|
|
Loading…
Reference in a new issue