2021-09-28 08:13:01 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, colorlog
|
2021-12-19 01:06:50 +00:00
|
|
|
, pyyaml
|
2021-09-28 08:13:01 +00:00
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
, requests
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "lupupy";
|
2023-02-16 17:41:37 +00:00
|
|
|
version = "0.2.8";
|
2021-09-28 08:13:01 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-02-16 17:41:37 +00:00
|
|
|
hash = "sha256-UIfv5lt9Vcyes9VYXkaQyBzfkcRiIE4It7q/CMJc7go=";
|
2021-09-28 08:13:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
colorlog
|
2021-12-19 01:06:50 +00:00
|
|
|
pyyaml
|
2021-09-28 08:13:01 +00:00
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
|
|
|
# Project has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"lupupy"
|
|
|
|
];
|
2021-09-28 08:13:01 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python module to control Lupusec alarm control panels";
|
|
|
|
homepage = "https://github.com/majuss/lupupy";
|
2023-02-02 18:25:31 +00:00
|
|
|
changelog = "https://github.com/majuss/lupupy/releases/tag/v${version}";
|
2021-09-28 08:13:01 +00:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|