Loading pkgs/development/python-modules/annotatedyaml/default.nix 0 → 100644 +57 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, cython, fetchFromGitHub, poetry-core, propcache, pytest-asyncio, pytest-codspeed, pytest-cov-stub, pytestCheckHook, pyyaml, setuptools, voluptuous, }: buildPythonPackage rec { pname = "annotatedyaml"; version = "0.4.4"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "annotatedyaml"; tag = "v${version}"; hash = "sha256-SKimMMqmA8twoojDncIAuUdB6DyoJsciuEneiVfTUg4="; }; build-system = [ cython poetry-core setuptools ]; dependencies = [ propcache pyyaml voluptuous ]; nativeCheckInputs = [ pytest-asyncio pytest-codspeed pytest-cov-stub pytestCheckHook ]; pythonImportsCheck = [ "annotatedyaml" ]; meta = { description = "Annotated YAML that supports secrets for Python"; homepage = "https://github.com/home-assistant-libs/annotatedyaml"; changelog = "https://github.com/home-assistant-libs/annotatedyaml/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -636,6 +636,8 @@ self: super: with self; { annotated-types = callPackage ../development/python-modules/annotated-types { }; annotatedyaml = callPackage ../development/python-modules/annotatedyaml { }; annoy = callPackage ../development/python-modules/annoy { }; anonip = callPackage ../development/python-modules/anonip { }; Loading Loading
pkgs/development/python-modules/annotatedyaml/default.nix 0 → 100644 +57 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, cython, fetchFromGitHub, poetry-core, propcache, pytest-asyncio, pytest-codspeed, pytest-cov-stub, pytestCheckHook, pyyaml, setuptools, voluptuous, }: buildPythonPackage rec { pname = "annotatedyaml"; version = "0.4.4"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "annotatedyaml"; tag = "v${version}"; hash = "sha256-SKimMMqmA8twoojDncIAuUdB6DyoJsciuEneiVfTUg4="; }; build-system = [ cython poetry-core setuptools ]; dependencies = [ propcache pyyaml voluptuous ]; nativeCheckInputs = [ pytest-asyncio pytest-codspeed pytest-cov-stub pytestCheckHook ]; pythonImportsCheck = [ "annotatedyaml" ]; meta = { description = "Annotated YAML that supports secrets for Python"; homepage = "https://github.com/home-assistant-libs/annotatedyaml"; changelog = "https://github.com/home-assistant-libs/annotatedyaml/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -636,6 +636,8 @@ self: super: with self; { annotated-types = callPackage ../development/python-modules/annotated-types { }; annotatedyaml = callPackage ../development/python-modules/annotatedyaml { }; annoy = callPackage ../development/python-modules/annoy { }; anonip = callPackage ../development/python-modules/anonip { }; Loading