mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
Merge pull request #121837 from fabaff/pyialarm
python3Packages.pyialarm: init at 1.5
This commit is contained in:
commit
44442c4ad1
37
pkgs/development/python-modules/pyialarm/default.nix
Normal file
37
pkgs/development/python-modules/pyialarm/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, dicttoxml
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, xmltodict
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyialarm";
|
||||
version = "1.5";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RyuzakiKK";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0vpscc2h13mmwscvjpm0bfd80x94mzh4d204v6n421mdz3ddhjqp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dicttoxml
|
||||
xmltodict
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "pyialarm" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to interface with Antifurto365 iAlarm systems";
|
||||
homepage = "https://github.com/RyuzakiKK/pyialarm";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -5649,6 +5649,8 @@ in {
|
|||
|
||||
pyi2cflash = callPackage ../development/python-modules/pyi2cflash { };
|
||||
|
||||
pyialarm = callPackage ../development/python-modules/pyialarm { };
|
||||
|
||||
pyicloud = callPackage ../development/python-modules/pyicloud { };
|
||||
|
||||
PyICU = callPackage ../development/python-modules/pyicu { };
|
||||
|
|
Loading…
Reference in a new issue