nixpkgs/pkgs/development/python-modules/cryptography/vectors.nix
Martin Weinelt e11e503865 Revert "python3Packages.cryptography: 3.4.8 -> 35.0.0"
This reverts commit 5b4e909b93.

At this time breaks a bunch of packages that are not ready for the
breaking changes in the X.509 and ASN.1 parsers.
2021-10-11 01:54:20 +02:00

23 lines
725 B
Nix

{ buildPythonPackage, fetchPypi, lib, cryptography }:
buildPythonPackage rec {
pname = "cryptography_vectors";
# The test vectors must have the same version as the cryptography package:
version = cryptography.version;
src = fetchPypi {
inherit pname version;
sha256 = "1wl0ynh3lzhc6q59g8mybvijmnp195x7fjxlb3h3sgcraw14312c";
};
# No tests included
doCheck = false;
meta = with lib; {
description = "Test vectors for the cryptography package";
homepage = "https://cryptography.io/en/latest/development/test-vectors/";
# Source: https://github.com/pyca/cryptography/tree/master/vectors;
license = with licenses; [ asl20 bsd3 ];
maintainers = with maintainers; [ primeos ];
};
}