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: 9d6726a2e3eb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e5bb19173e2e
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Feb 17, 2021

  1. Copy the full SHA
    e5bb191 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.5"; # Also update the hash in vectors.nix
version = "3.4.6"; # Also update the hash in vectors.nix

src = fetchPypi {
inherit pname version;
sha256 = "0nykwsifsjca5mbw5j9x0180z8cqyv1g2nplm36h5zji5fl62rsg";
sha256 = "11wgsihfq72fav67c3igi0xbhbd6c5dj869byd1jkq0fbcz24cid";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
sourceRoot = "${pname}-${version}/${cargoRoot}";
name = "${pname}-${version}";
sha256 = "0bz3ig0pa3lchdd2yh94k9smqa6fwibmkdgd2lza3fw5bx30m5vj";
sha256 = "1i0sd2y4a5g1yqwcpw2ycp6p4p8sk5v7clblq756i5864j52v6w1";
};

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 = "0wasfyfqhs0drly94cma88bhkj3r9p40l22k2gq4akl5kfndw8f9";
sha256 = "1a1d5ix5b3ajhrqaf8rm6qmd6gkaidij0jgd1vrb8q1xn1gqmy75";
};

# No tests included