Merge pull request #304235 from moduon/hatch-odoo

python3Packages.hatch-odoo: init at 0.1
This commit is contained in:
Maciej Krüger
2024-06-20 16:27:44 +02:00
committed by GitHub
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
lib,
manifestoo-core,
pythonOlder,
tomli,
}:
buildPythonPackage rec {
pname = "hatch-odoo";
version = "0.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "acsone";
repo = pname;
rev = version;
sha256 = "sha256-+KM3tpeQ4e53bVhUeWUSfyuIzPRvWkjZi4S/gH4UHVY=";
};
buildInputs = [hatch-vcs];
propagatedBuildInputs =
[
hatchling
manifestoo-core
]
++ lib.optionals (pythonOlder "3.11") [
tomli
];
meta = with lib; {
description = "A hatch plugin to develop and package Odoo projects";
homepage = "https://github.com/acsone/hatch-odoo";
license = licenses.mit;
maintainers = with maintainers; [yajo];
};
}
+2
View File
@@ -5345,6 +5345,8 @@ self: super: with self; {
hatch-jupyter-builder = callPackage ../development/python-modules/hatch-jupyter-builder { };
hatch-odoo = callPackage ../development/python-modules/hatch-odoo { };
hatch-vcs = callPackage ../development/python-modules/hatch-vcs { };
hatch-nodejs-version = callPackage ../development/python-modules/hatch-nodejs-version { };