mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
14399c5cc1
https://github.com/home-assistant/hassil/releases/tag/v1.1.0 https://github.com/home-assistant/hassil/releases/tag/v1.2.0 https://github.com/home-assistant/hassil/releases/tag/v1.2.1 https://github.com/home-assistant/hassil/releases/tag/v1.2.2 https://github.com/home-assistant/hassil/releases/tag/v1.2.3 https://github.com/home-assistant/hassil/releases/tag/v1.2.4 https://github.com/home-assistant/hassil/releases/tag/v1.2.5
45 lines
836 B
Nix
45 lines
836 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
|
|
# propagates
|
|
, importlib-resources
|
|
, pyyaml
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
let
|
|
pname = "hassil";
|
|
version = "1.2.5";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-udOkZILoba2+eR8oSFThsB846COaIXawwRYhn261mCA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
] ++ lib.optionals (pythonOlder "3.9") [
|
|
importlib-resources
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/home-assistant/hassil/releases/tag/v${version}";
|
|
description = "Intent parsing for Home Assistant";
|
|
homepage = "https://github.com/home-assistant/hassil";
|
|
license = licenses.asl20;
|
|
maintainers = teams.home-assistant.members;
|
|
};
|
|
}
|