python311Packages.zlib-ng 0 -> 1 attrpath: python311Packages.zlib-ng 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/9wcm13v8flk9ncg69l5vxd64yb0rkh5b-packages.json.drv building '/nix/store/9wcm13v8flk9ncg69l5vxd64yb0rkh5b-packages.json.drv'... Going to be running update for following packages: - python3.11-zlib-ng-0.4.1 Press Enter key to continue... Running update for: - python3.11-zlib-ng-0.4.1: UPDATING ... - python3.11-zlib-ng-0.4.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/zlib-ng/default.nix b/pkgs/development/python-modules/zlib-ng/default.nix index 7cb498bbb12f..bad6da4faf3d 100644 --- a/pkgs/development/python-modules/zlib-ng/default.nix +++ b/pkgs/development/python-modules/zlib-ng/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "zlib-ng"; - version = "0.4.1"; + version = "0.4.3"; pyproject = true; src = fetchFromGitHub { owner = "pycompression"; repo = "python-zlib-ng"; - rev = "v${version}"; - hash = "sha256-uK6Md8ZOVUNwXCjzM4zTVr3WBwzLdnvT9n8yBvf968k="; + rev = "refs/tags/v${version}"; + hash = "sha256-M0R39vUX3JMDEDJfsRzg1ipxbWJ/kl0FzW6ZUMXvGDs="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.4.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub # build-system , cmake , setuptools # native dependencies , zlib-ng # tests , pytestCheckHook }: buildPythonPackage rec { pname = "zlib-ng"; version = "0.4.3"; pyproject = true; src = fetchFromGitHub { owner = "pycompression"; repo = "python-zlib-ng"; rev = "v${version}"; hash = "sha256-M0R39vUX3JMDEDJfsRzg1ipxbWJ/kl0FzW6ZUMXvGDs="; }; nativeBuildInputs = [ cmake setuptools ]; dontUseCmakeConfigure = true; env.PYTHON_ZLIB_NG_LINK_DYNAMIC = true; buildInputs = [ zlib-ng ]; pythonImportsCheck = [ "zlib_ng" ]; nativeCheckInputs = [ pytestCheckHook ]; preCheck = '' rm -rf src ''; disabledTests = [ # commandline tests fail to find the built module "test_compress_fast_best_are_exclusive" "test_compress_infile_outfile" "test_compress_infile_outfile_default" "test_decompress_cannot_have_flags_compression" "test_decompress_infile_outfile" "test_decompress_infile_outfile_error" ]; meta = with lib; { description = "A drop-in replacement for Python's zlib and gzip modules using zlib-ng"; homepage = "https://github.com/pycompression/python-zlib-ng"; changelog = "https://github.com/pycompression/python-zlib-ng/blob/${src.rev}/CHANGELOG.rst"; license = licenses.psfl; maintainers = with maintainers; [ hexa ]; }; }