terragrunt: 0.72.2 -> 0.72.6 (#378621)
[NixPkgs.git] / pkgs / development / python-modules / xknxproject / default.nix
blob1430a701141b1aa0785cb41aeba4d142a9459d33
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   pythonOlder,
7   pyzipper,
8   setuptools,
9   striprtf,
12 buildPythonPackage rec {
13   pname = "xknxproject";
14   version = "3.8.1";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchFromGitHub {
20     owner = "XKNX";
21     repo = "xknxproject";
22     tag = version;
23     hash = "sha256-iuW83gKDJTgFkfSW32OPOuwyGLyFoZGKQGUDJkVUGAM=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     pyzipper
30     striprtf
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "xknxproject" ];
37   meta = with lib; {
38     description = "Library to extract KNX projects and parses the underlying XML";
39     homepage = "https://github.com/XKNX/xknxproject";
40     changelog = "https://github.com/XKNX/xknxproject/releases/tag/${version}";
41     license = licenses.gpl2Only;
42     maintainers = with maintainers; [ fab ];
43   };