1 # This older version only exists because `ceph` needs it, see `cryptography.nix`.
9 buildPythonPackage rec {
10 pname = "cryptography-vectors";
11 # The test vectors must have the same version as the cryptography package
12 inherit (cryptography) version;
13 format = "setuptools";
16 pname = "cryptography_vectors";
18 hash = "sha256-hGBwa1tdDOSoVXHKM4nPiPcAu2oMYTPcn+D1ovW9oEE=";
24 pythonImportsCheck = [ "cryptography_vectors" ];
27 description = "Test vectors for the cryptography package";
28 homepage = "https://cryptography.io/en/latest/development/test-vectors/";
29 # Source: https://github.com/pyca/cryptography/tree/master/vectors;
30 license = with licenses; [
34 maintainers = with maintainers; [ nh2 ];