python310Packages.chiavdf 0 -> 1 attrpath: python310Packages.chiavdf 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/6rayhpmjw1v950n9yj28a2vlzmc1g5b6-packages.json.drv building '/nix/store/6rayhpmjw1v950n9yj28a2vlzmc1g5b6-packages.json.drv'... Going to be running update for following packages: - python3.10-chiavdf-1.0.7 Press Enter key to continue... Running update for: - python3.10-chiavdf-1.0.7: UPDATING ... - python3.10-chiavdf-1.0.7: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/chiavdf/default.nix b/pkgs/development/python-modules/chiavdf/default.nix index 525bd174884..4f6c43a9235 100644 --- a/pkgs/development/python-modules/chiavdf/default.nix +++ b/pkgs/development/python-modules/chiavdf/default.nix @@ -14,12 +14,12 @@ buildPythonPackage rec { pname = "chiavdf"; - version = "1.0.7"; + version = "1.0.8"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-956517eGqRSLg+Y4ybmASiZoypgpYn/D9lbPA4Rcfts="; + hash = "sha256-ilT7tCdX8ak3qmpXJ0LITf0ZGAdFSN4tm6GKw06A/m8="; }; patches = [ No auto update branch exists Old version 1.0.7" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , setuptools-scm , substituteAll , cmake , boost , gmp , pybind11 , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "chiavdf"; version = "1.0.8"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-ilT7tCdX8ak3qmpXJ0LITf0ZGAdFSN4tm6GKw06A/m8="; }; patches = [ # prevent CMake from trying to get libraries on the Internet (substituteAll { src = ./dont_fetch_dependencies.patch; pybind11_src = pybind11.src; }) ]; # x86 instructions are needed for this component BUILD_VDF_CLIENT = lib.optionalString (!stdenv.isx86_64) "N"; nativeBuildInputs = [ cmake setuptools-scm ]; buildInputs = [ boost gmp pybind11 ]; checkInputs = [ pytestCheckHook ]; # CMake needs to be run by setuptools rather than by its hook dontConfigure = true; meta = with lib; { broken = stdenv.isDarwin; description = "Chia verifiable delay function utilities"; homepage = "https://www.chia.net/"; license = licenses.asl20; maintainers = teams.chia.members; }; }