python3Packages.hatch-vcs: 0.4.0 -> 0.5.0

https://github.com/ofek/hatch-vcs/releases/tag/v0.5.0

This commit was automatically generated using update-python-libraries.

Changed files
+4 -11
pkgs
development
python-modules
hatch-vcs
+4 -11
pkgs/development/python-modules/hatch-vcs/default.nix
···
buildPythonPackage rec {
pname = "hatch-vcs";
-
version = "0.4.0";
+
version = "0.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
src = fetchPypi {
pname = "hatch_vcs";
inherit version;
-
hash = "sha256-CTgQdI/gHbDUUfq88sGsJojK79Iy1O3pZwkLHBsH2fc=";
+
hash = "sha256-A5X6EmlANAIVCQw0Siv04qd7y+faqxb0Gze5jJWAn/k=";
};
build-system = [ hatchling ];
···
];
disabledTests = [
-
# incompatible with setuptools-scm>=7
-
# https://github.com/ofek/hatch-vcs/issues/8
-
"test_write"
-
]
-
++ lib.optionals (pythonOlder "3.11") [
-
# https://github.com/pypa/setuptools_scm/issues/1038, fixed in setuptools_scm@8.1.0
-
"test_basic"
-
"test_root"
-
"test_metadata"
+
# reacts to our setup-hook pretending a version
+
"test_custom_tag_pattern_get_version"
];
pythonImportsCheck = [ "hatch_vcs" ];