biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / version-management / bumpver / default.nix
blobd540d42110736a765b4df68ec048f570cd072868
1 { lib, python3, fetchPypi, git, mercurial }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "bumpver";
5   version = "2021.1110";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "b6a0ddb78db7e00ae7ffe895bf8ef97f91e6310dfc1c4721896bdfd044b1cb03";
10   };
12   prePatch = ''
13     substituteInPlace setup.py \
14       --replace "if any(arg.startswith(\"bdist\") for arg in sys.argv):" ""\
15       --replace "import lib3to6" ""\
16       --replace "package_dir = lib3to6.fix(package_dir)" ""
17   '';
19   propagatedBuildInputs = with python3.pkgs; [ pathlib2 click toml lexid colorama setuptools ];
21   nativeCheckInputs = [ python3.pkgs.pytestCheckHook git mercurial ];
23   disabledTests = [
24     # fails due to more aggressive setuptools version specifier validation
25     "test_parse_default_pattern"
26   ];
28   meta = with lib; {
29     description = "Bump version numbers in project files";
30     homepage = "https://pypi.org/project/bumpver/";
31     license = licenses.mit;
32     maintainers = with maintainers; [ kfollesdal ];
33     mainProgram = "bumpver";
34   };