python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / pydevccu / default.nix
blobb1af673ed6fd5b8a4fba3ebd80b4e484e884c22e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "pydevccu";
11   version = "0.1.8";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "danielperna84";
18     repo = "pydevccu";
19     rev = "refs/tags/${version}";
20     hash = "sha256-WguSTtWxkiDs5nK5eiaarfD0CBxzIxQR9fxjuW3wMGc=";
21   };
23   build-system = [ setuptools ];
25   # Module has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "pydevccu" ];
30   meta = {
31     description = "HomeMatic CCU XML-RPC Server with fake devices";
32     homepage = "https://github.com/danielperna84/pydevccu";
33     changelog = "https://github.com/danielperna84/pydevccu/releases/tag/${version}";
34     license = lib.licenses.mit;
35     maintainers = with lib.maintainers; [ fab ];
36   };