python3Packages.pyintesishome: init at 1.7.7
This commit is contained in:
parent
41d8ec87b2
commit
027c28b18a
32
pkgs/development/python-modules/pyintesishome/default.nix
Normal file
32
pkgs/development/python-modules/pyintesishome/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyintesishome";
|
||||||
|
version = "1.7.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jnimmo";
|
||||||
|
repo = "pyIntesisHome";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1wjh6bib6bg9rf4q9z6dlrf3gncj859hz4i20a9w06jci7b2yaaz";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pyintesishome" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python interface for IntesisHome devices";
|
||||||
|
homepage = "https://github.com/jnimmo/pyIntesisHome";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -5863,6 +5863,8 @@ in {
|
|||||||
|
|
||||||
pyinsteon = callPackage ../development/python-modules/pyinsteon { };
|
pyinsteon = callPackage ../development/python-modules/pyinsteon { };
|
||||||
|
|
||||||
|
pyintesishome = callPackage ../development/python-modules/pyintesishome { };
|
||||||
|
|
||||||
pyipp = callPackage ../development/python-modules/pyipp { };
|
pyipp = callPackage ../development/python-modules/pyipp { };
|
||||||
|
|
||||||
pyiqvia = callPackage ../development/python-modules/pyiqvia { };
|
pyiqvia = callPackage ../development/python-modules/pyiqvia { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user