Merge pull request #109327 from fabaff/pyvera
This commit is contained in:
commit
74b0954852
3 changed files with 57 additions and 1 deletions
54
pkgs/development/python-modules/pyvera/default.nix
Normal file
54
pkgs/development/python-modules/pyvera/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, poetry-core
|
||||
, pytest-cov
|
||||
, pytest-asyncio
|
||||
, pytest-timeout
|
||||
, responses
|
||||
, pytestCheckHook
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyvera";
|
||||
version = "0.3.11";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pavoni";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0yi2cjd3jag95xa0k24f7d7agi26ywb3219a0j0k8l2nsx2sdi87";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
# build-system section is missing https://github.com/pavoni/pyvera/pull/142
|
||||
url = "https://github.com/pavoni/pyvera/pull/142/commits/e90995a8d55107118d324e8cf189ddf1d9e3aa6c.patch";
|
||||
sha256 = "1psq3fiwg20kcwyybzh5g17dzn5fh29lhm238npyg846innbzgs7";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytest-timeout
|
||||
pytest-cov
|
||||
pytestCheckHook
|
||||
responses
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyvera" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to control devices via the Vera hub";
|
||||
homepage = "https://github.com/pavoni/pyvera";
|
||||
license = with licenses; [ gpl2Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -894,7 +894,7 @@
|
|||
"velbus" = ps: with ps; [ ]; # missing inputs: python-velbus
|
||||
"velux" = ps: with ps; [ ]; # missing inputs: pyvlx
|
||||
"venstar" = ps: with ps; [ ]; # missing inputs: venstarcolortouch
|
||||
"vera" = ps: with ps; [ ]; # missing inputs: pyvera
|
||||
"vera" = ps: with ps; [ pyvera ];
|
||||
"verisure" = ps: with ps; [ jsonpath ]; # missing inputs: vsure
|
||||
"versasense" = ps: with ps; [ ]; # missing inputs: pyversasense
|
||||
"version" = ps: with ps; [ pyhaversion ];
|
||||
|
|
|
@ -6366,6 +6366,8 @@ in {
|
|||
|
||||
pyvcf = callPackage ../development/python-modules/pyvcf { };
|
||||
|
||||
pyvera = callPackage ../development/python-modules/pyvera { };
|
||||
|
||||
pyviz-comms = callPackage ../development/python-modules/pyviz-comms { };
|
||||
|
||||
pyvips = callPackage ../development/python-modules/pyvips {
|
||||
|
|
Loading…
Reference in a new issue