Files
nixpkgs/pkgs/development/python-modules/oca-port/default.nix
T
Martin Weinelt c24795fb62 python3Packages.oca-port: 0.18 -> 0.19
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:41 +01:00

48 lines
893 B
Nix

{
buildPythonPackage,
click,
fetchFromGitHub,
gitpython,
giturlparse,
lib,
nix-update-script,
requests,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "oca-port";
version = "0.19";
pyproject = true;
src = fetchFromGitHub {
inherit version;
owner = "OCA";
repo = "oca-port";
tag = "v${version}";
hash = "sha256-5Iw9gbc8+x82huAMrqMHKXmJ12Drtaz3USdCucx1ruY=";
};
build-system = [
setuptools-scm
];
dependencies = [
click
giturlparse
gitpython
requests
];
passthru.updateScript = nix-update-script { };
pythonImportsCheck = [ "oca_port" ];
meta = {
description = "Tool helping to port an addon or missing commits of an addon from one branch to another";
homepage = "https://github.com/OCA/oca-port";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ yajo ];
};
}