otadump: init at 0.1.2 (#329129)
[NixPkgs.git] / pkgs / development / python-modules / knx-frontend / default.nix
blob243be4b8eb157ac3a45d37ff3cd482688fa6f830
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "knx-frontend";
10   version = "2024.11.16.205004";
11   pyproject = true;
13   # TODO: source build, uses yarn.lock
14   src = fetchPypi {
15     pname = "knx_frontend";
16     inherit version;
17     hash = "sha256-CsKtCTLsBpW3IMTdT8YBsnWLBt/huZGejyyBmusT6zc=";
18   };
20   build-system = [ setuptools ];
22   pythonImportsCheck = [ "knx_frontend" ];
24   # no tests
25   doCheck = false;
27   meta = with lib; {
28     changelog = "https://github.com/XKNX/knx-frontend/releases/tag/${version}";
29     description = "Home Assistant Panel for managing the KNX integration";
30     homepage = "https://github.com/XKNX/knx-frontend";
31     license = licenses.mit;
32     maintainers = with maintainers; [ hexa ];
33   };