python3Packages.anyconfig: 0.13.0 -> 0.14.0

This commit is contained in:
Martin Weinelt
2024-03-12 17:41:39 +01:00
parent cdaaff69a9
commit b695b62489
@@ -7,17 +7,16 @@
buildPythonPackage rec {
pname = "anyconfig";
version = "0.13.0";
version = "0.14.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-A/8uF2KvOI+7vtHBq3+fHsAGqR2n2zpouWPabneV0qw=";
hash = "sha256-LN9Ur12ujpF0Pe2CxU7Z2Krvo6lyL11F6bX3S2A+AU0=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov=src -vv" ""
sed -i '/addopts =/d' setup.cfg
'';
propagatedBuildInputs = [
@@ -36,6 +35,7 @@ buildPythonPackage rec {
disabledTestPaths = [
# NameError: name 'TT' is not defined
"tests/schema/test_jsonschema.py"
"tests/backend/loaders/pickle/test_pickle_stdlib.py"
];
pythonImportsCheck = [ "anyconfig" ];