Loading pkgs/development/python-modules/manifestoo-core/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { buildPythonPackage , typing-extensions , fetchPypi , lib , nix-update-script , hatch-vcs , pythonOlder , importlib-resources }: buildPythonPackage rec { pname = "manifestoo-core"; version = "0.11.0"; format = "pyproject"; src = fetchPypi { inherit version; pname = "manifestoo_core"; hash = "sha256-ZZAJDOtGcYWm0yS5bMOUdM1Jf+kfurwiLsJwyTYPz/4="; }; nativeBuildInputs = [ hatch-vcs ]; propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ importlib-resources ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "A library to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo-core"; license = licenses.lgpl3Only; maintainers = with maintainers; [ yajo ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6097,6 +6097,8 @@ self: super: with self; { manifest-ml = callPackage ../development/python-modules/manifest-ml { }; manifestoo-core = callPackage ../development/python-modules/manifestoo-core { }; manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix { }; manuel = callPackage ../development/python-modules/manuel { }; Loading Loading
pkgs/development/python-modules/manifestoo-core/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { buildPythonPackage , typing-extensions , fetchPypi , lib , nix-update-script , hatch-vcs , pythonOlder , importlib-resources }: buildPythonPackage rec { pname = "manifestoo-core"; version = "0.11.0"; format = "pyproject"; src = fetchPypi { inherit version; pname = "manifestoo_core"; hash = "sha256-ZZAJDOtGcYWm0yS5bMOUdM1Jf+kfurwiLsJwyTYPz/4="; }; nativeBuildInputs = [ hatch-vcs ]; propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ importlib-resources ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; passthru.updateScript = nix-update-script { }; meta = with lib; { description = "A library to reason about Odoo addons manifests"; homepage = "https://github.com/acsone/manifestoo-core"; license = licenses.lgpl3Only; maintainers = with maintainers; [ yajo ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6097,6 +6097,8 @@ self: super: with self; { manifest-ml = callPackage ../development/python-modules/manifest-ml { }; manifestoo-core = callPackage ../development/python-modules/manifestoo-core { }; manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix { }; manuel = callPackage ../development/python-modules/manuel { }; Loading