python313Packages.cryptography: 44.0.3 -> 45.0.2

https://cryptography.io/en/latest/changelog/#v45-0-2
This commit is contained in:
Martin Weinelt
2025-05-23 08:37:21 -07:00
committed by Robert Schütz
parent af0a7f4bd0
commit 38c2714181
2 changed files with 4 additions and 4 deletions
@@ -23,7 +23,7 @@
buildPythonPackage rec {
pname = "cryptography";
version = "44.0.3"; # Also update the hash in vectors.nix
version = "45.0.2"; # Also update the hash in vectors.nix
pyproject = true;
disabled = pythonOlder "3.7";
@@ -32,13 +32,13 @@ buildPythonPackage rec {
owner = "pyca";
repo = "cryptography";
tag = version;
hash = "sha256-qpRr0ywGl9J+37T9C3oBRa4TtKF9UTJm++ABf1rzleY=";
hash = "sha256-SjlzEyX30b3LbEH5NOhCJvds9KuguTTdF2A0kbIysA4=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
hash = "sha256-mino+eLi+KjZLgD5V5mFecwV1A5XVZn8lt41sXZFuL4=";
hash = "sha256-dKwNnWBzBM9QEcRbbvkNhFJnFxFakqZ/MS7rqE8/tNQ=";
};
postPatch = ''
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "cryptography_vectors";
inherit version;
hash = "sha256-NA55Ddfb6BoLvsEov7SrWOThAIGwXsskqMaTgJCaOks=";
hash = "sha256-U+PmRHxCmYVM+Rlb3Bn3sEZg3II/0upEaDBcIsrsGac=";
};
build-system = [ flit-core ];