2022-12-30T04:51:30 python310Packages.fastecdsa 0 -> 1 2022-12-30T04:51:32 attrpath: python310Packages.fastecdsa 2022-12-30T04:51:32 Checking auto update branch... 2022-12-30T04:51:37 [version] 2022-12-30T04:51:37 [version] skipping because derivation has updateScript 2022-12-30T04:51:37 [rustCrateVersion] 2022-12-30T04:51:37 [rustCrateVersion] No cargoSha256 found 2022-12-30T04:51:37 [golangModuleVersion] 2022-12-30T04:51:37 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-30T04:51:37 [updateScript] 2022-12-30T04:51:39 [updateScript] Success 2022-12-30T04:51:39 [updateScript] this derivation will be built: /nix/store/wjz4fk5qiq7acb4ldy732r3yk52adcqq-packages.json.drv building '/nix/store/wjz4fk5qiq7acb4ldy732r3yk52adcqq-packages.json.drv'... Going to be running update for following packages: - python3.10-fastecdsa-2.2.3 Press Enter key to continue... Running update for: - python3.10-fastecdsa-2.2.3: UPDATING ... - python3.10-fastecdsa-2.2.3: DONE. Packages updated! 2022-12-30T04:51:39 2022-12-30T04:51:39 [quotedUrls] 2022-12-30T04:51:39 [quotedUrls] nothing found to replace 2022-12-30T04:51:39 Diff after rewrites: diff --git a/pkgs/development/python-modules/fastecdsa/default.nix b/pkgs/development/python-modules/fastecdsa/default.nix index e305f1e6d65..1b8536dd316 100644 --- a/pkgs/development/python-modules/fastecdsa/default.nix +++ b/pkgs/development/python-modules/fastecdsa/default.nix @@ -7,12 +7,12 @@ buildPythonPackage rec { pname = "fastecdsa"; - version = "2.2.3"; + version = "2.3.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "269bdb0f618b38f8f6aec9d23d23db518046c3cee01a954fa6aa7322a1a7db8f"; + sha256 = "sha256-8ZjORPaUbKuwKYip9J0U78QQ26XiEemDIbqdhzeyP/g="; }; buildInputs = [ gmp ]; 2022-12-30T04:53:07 Old version 2.2.3" not present in master derivation file with contents: { lib , buildPythonPackage , fetchPypi , gmp , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "fastecdsa"; version = "2.3.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-8ZjORPaUbKuwKYip9J0U78QQ26XiEemDIbqdhzeyP/g="; }; buildInputs = [ gmp ]; checkInputs = [ pytestCheckHook ]; disabledTestPaths = [ # skip tests which require being online to download test vectors "fastecdsa/tests/test_wycheproof_vectors.py" "fastecdsa/tests/test_rfc6979_ecdsa.py" ]; # skip tests for now, they fail with # ImportError: cannot import name '_ecdsa' from 'fastecdsa' # but the installed package works just fine doCheck = false; pythonImportsCheck = [ "fastecdsa" ]; meta = with lib; { description = "Fast elliptic curve digital signatures"; homepage = "https://github.com/AntonKueltz/fastecdsa"; changelog = "https://github.com/AntonKueltz/fastecdsa/blob/v${version}/CHANGELOG.md"; license = licenses.unlicense; maintainers = with maintainers; [ prusnak ]; }; }