python311Packages.anyconfig 0 -> 1 attrpath: python311Packages.anyconfig Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/yi1hnpci8cp6n5klcqv76xjgz4j6dp7h-packages.json.drv building '/nix/store/yi1hnpci8cp6n5klcqv76xjgz4j6dp7h-packages.json.drv'... Going to be running update for following packages: - python3.11-anyconfig-0.13.0 Press Enter key to continue... Running update for: - python3.11-anyconfig-0.13.0: UPDATING ... - python3.11-anyconfig-0.13.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/anyconfig/default.nix b/pkgs/development/python-modules/anyconfig/default.nix index ce1c7b8666dd..55e518b0eef3 100644 --- a/pkgs/development/python-modules/anyconfig/default.nix +++ b/pkgs/development/python-modules/anyconfig/default.nix @@ -7,12 +7,12 @@ 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 = '' No auto update branch exists Old version 0.13.0" not present in staging derivation file with contents: { buildPythonPackage , fetchPypi , lib , pytestCheckHook , setuptools }: buildPythonPackage rec { pname = "anyconfig"; version = "0.14.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-LN9Ur12ujpF0Pe2CxU7Z2Krvo6lyL11F6bX3S2A+AU0="; }; postPatch = '' sed -i '/addopts =/d' setup.cfg ''; propagatedBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # OSError: /build/anyconfig-0.12.0/tests/res/cli/no_template/10/e/10.* should exists but not "test_runs_for_datasets" ]; disabledTestPaths = [ # NameError: name 'TT' is not defined "tests/schema/test_jsonschema.py" "tests/backend/loaders/pickle/test_pickle_stdlib.py" ]; pythonImportsCheck = [ "anyconfig" ]; meta = with lib; { description = "Python library provides common APIs to load and dump configuration files in various formats"; mainProgram = "anyconfig_cli"; homepage = "https://github.com/ssato/python-anyconfig"; license = licenses.mit; maintainers = with maintainers; [ tboerger ]; }; }