mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
python3Packages.somfy-mylink-synergy: init at 1.0.6
This commit is contained in:
parent
8f353edb83
commit
4ec0164ab1
2 changed files with 33 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "somfy-mylink-synergy";
|
||||
version = "1.0.6";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bendews";
|
||||
repo = "somfy-mylink-synergy";
|
||||
rev = "v${version}";
|
||||
sha256 = "1aa178b5lxdzfa4z7sjw6ky39dkfazp7dqs9dq78z2zay2sqgmgr";
|
||||
};
|
||||
|
||||
# no tests implemented
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "somfy_mylink_synergy" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python API to utilise the Somfy Synergy JsonRPC API";
|
||||
homepage = "https://github.com/bendews/somfy-mylink-synergy";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -8058,6 +8058,8 @@ in {
|
|||
|
||||
somecomfort = callPackage ../development/python-modules/somecomfort { };
|
||||
|
||||
somfy-mylink-synergy = callPackage ../development/python-modules/somfy-mylink-synergy { };
|
||||
|
||||
sonarr = callPackage ../development/python-modules/sonarr { };
|
||||
|
||||
sopel = callPackage ../development/python-modules/sopel { };
|
||||
|
|
Loading…
Reference in a new issue