Files
nixpkgs/pkgs/development/python-modules/insteon-frontend-home-assistant/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

36 lines
786 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "insteon-frontend-home-assistant";
version = "0.5.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-NZwnx8tlXnsVCk4nvNjOg3cjSr2CnjqWcZG7xFTC2wA=";
};
nativeBuildInputs = [ setuptools ];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "insteon_frontend" ];
meta = with lib; {
changelog = "https://github.com/pyinsteon/insteon-panel/releases/tag/${version}";
description = "Insteon frontend for Home Assistant";
homepage = "https://github.com/pyinsteon/insteon-panel";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}