python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / pythonegardia / default.nix
blob4b3d6ce8f0e41d93824492452cac865f041a1fd6
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pythonegardia";
11   version = "1.0.52";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "jeroenterheerdt";
18     repo = "python-egardia";
19     rev = "refs/tags/v${version}";
20     sha256 = "sha256-lQ/7tH74MllwFe2kF5OcYSb4rQd+yJU1W6ztG4Z6Y0U=";
21   };
23   propagatedBuildInputs = [ requests ];
25   # Project has no tests, only two test file for manual interaction
26   doCheck = false;
28   pythonImportsCheck = [ "pythonegardia" ];
30   meta = with lib; {
31     description = "Python interface with Egardia/Woonveilig alarms";
32     homepage = "https://github.com/jeroenterheerdt/python-egardia";
33     changelog = "https://github.com/jeroenterheerdt/python-egardia/releases/tag/v${version}";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ fab ];
36   };