9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
46 lines
890 B
Nix
46 lines
890 B
Nix
{ buildPythonPackage
|
|
, click
|
|
, fetchPypi
|
|
, gitpython
|
|
, lib
|
|
, nix-update-script
|
|
, requests
|
|
, setuptools-scm
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oca-port";
|
|
version = "0.13";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "oca_port";
|
|
hash = "sha256-9ihqjnGdBPasiRD2pZeaiibwzFQKI9t+s/zMzvyLLHQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
gitpython
|
|
requests
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
pythonImportsCheck = [ "oca_port" ];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ yajo ];
|
|
};
|
|
}
|