87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
40 lines
930 B
Nix
40 lines
930 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pythonegardia";
|
|
version = "1.0.52";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeroenterheerdt";
|
|
repo = "python-egardia";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-lQ/7tH74MllwFe2kF5OcYSb4rQd+yJU1W6ztG4Z6Y0U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
];
|
|
|
|
# Project has no tests, only two test file for manual interaction
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pythonegardia"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface with Egardia/Woonveilig alarms";
|
|
homepage = "https://github.com/jeroenterheerdt/python-egardia";
|
|
changelog = "https://github.com/jeroenterheerdt/python-egardia/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|