mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
b1efae4a9e
* python3Packages.oca-port: init at 0.12 Useful CLI tool for [OCA](https://odoo-community.org/) modules maintenance. @moduon MT-2586 Co-authored-by: 25083790+natsukium@users.noreply.github.com Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * python3Packages.oca-port: 0.12 -> 0.13 --------- Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
47 lines
890 B
Nix
47 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 ];
|
|
};
|
|
}
|