Files
nixpkgs/pkgs/development/python-modules/merge3/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

34 lines
625 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "merge3";
version = "0.0.15";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-0+rCE9hNVt/J45VSrIJGx4YKlAlk6+7YqL5EIvZJK68=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "merge3" ];
meta = with lib; {
description = "Python implementation of 3-way merge";
mainProgram = "merge3";
homepage = "https://github.com/breezy-team/merge3";
license = licenses.gpl2Plus;
maintainers = [ ];
};
}