python39Packages.cryptography: 36.0.0 -> 36.0.2

This commit is contained in:
Sandro Jäckel
2022-03-23 11:38:29 +01:00
parent 85a633de9f
commit 4cc71fa97d
2 changed files with 5 additions and 5 deletions
@@ -21,18 +21,18 @@
buildPythonPackage rec {
pname = "cryptography";
version = "36.0.0"; # Also update the hash in vectors.nix
version = "36.0.2"; # Also update the hash in vectors.nix
src = fetchPypi {
inherit pname version;
sha256 = "0zshc1jaavykdnic5ns8zax6gqganys6gp5f35bqcfggnkn6kxsj";
sha256 = "sha256-cPj097sqyfNAZVy6yJ1oxSevW7Q4dSKoQT6EHj5mKMk=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
sourceRoot = "${pname}-${version}/${cargoRoot}";
name = "${pname}-${version}";
sha256 = "1nbw4cfshyc125jwdivg9gxy52qcd1iz31lypl95ij9bn1dyx933";
sha256 = "sha256-6C4N445h4Xf2nCc9rJWpSZaNPilR9GfgbmKvNlSIFqg=";
};
cargoRoot = "src/rust";
@@ -3,11 +3,11 @@
buildPythonPackage rec {
pname = "cryptography_vectors";
# The test vectors must have the same version as the cryptography package:
version = cryptography.version;
inherit (cryptography) version;
src = fetchPypi {
inherit pname version;
sha256 = "19gs051jbsixxwhlfs4xdxpzg8w1vypzpz3w56bp9x01qwzfbdy6";
sha256 = "sha256-KnkkRJoDAl+vf4dUpvQgAAHKshBzSmzmrB9r2s06aOQ=";
};
# No tests included