Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7b1453f78485
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 939c9aa22c4a
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Feb 11, 2021

  1. python3Packages.cryptography: 3.4.2 -> 3.4.4

    Contains a few minor fixes and improvements.
    primeos committed Feb 11, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    shlevy Shea Levy
    Copy the full SHA
    939c9aa View commit details
Showing with 4 additions and 4 deletions.
  1. +3 −3 pkgs/development/python-modules/cryptography/default.nix
  2. +1 −1 pkgs/development/python-modules/cryptography/vectors.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/cryptography/default.nix
Original file line number Diff line number Diff line change
@@ -22,18 +22,18 @@

buildPythonPackage rec {
pname = "cryptography";
version = "3.4.2"; # Also update the hash in vectors.nix
version = "3.4.4"; # Also update the hash in vectors.nix

src = fetchPypi {
inherit pname version;
sha256 = "1i1mx5y9hkyfi9jrrkcw804hmkcglxi6rmf7vin7jfnbr2bf4q64";
sha256 = "0j680r1453r1ws6hnpfns80kh82xlry7ihhmmgdvnvvbhpq1jppf";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
sourceRoot = "${pname}-${version}/${cargoRoot}";
name = "${pname}-${version}";
hash = "sha256-PS562W4L1NimqDV2H0jl5vYhL08H9est/pbIxSdYVfo=";
sha256 = "1xjdjnpvk90cwn9s689dckwkkrsjbp0hr8bjysc8l5dpsvprifdb";
};

cargoRoot = "src/rust";
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/cryptography/vectors.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ buildPythonPackage rec {

src = fetchPypi {
inherit pname version;
sha256 = "0i888rrfn7116lj7f2nr4amd2z45sk6866zizjfpsn5wh2713cls";
sha256 = "0fh9fyghxi2qycq3rb6d9y46wh0k72s3afrp1n58sb61m8z3xddh";
};

# No tests included