linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / cryptography / vectors.nix
blob0cb23d53c03cae9fa8810f3c73e5e9997f9b295f
1 { buildPythonPackage, fetchPypi, lib, cryptography }:
3 buildPythonPackage rec {
4   pname = "cryptography_vectors";
5   # The test vectors must have the same version as the cryptography package:
6   version = cryptography.version;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1hh4j88ywil3jf62ppj1blygmdirbqz86pynd9lqfijiaym3mb57";
11   };
13   # No tests included
14   doCheck = false;
16   meta = with lib; {
17     description = "Test vectors for the cryptography package";
18     homepage = "https://cryptography.io/en/latest/development/test-vectors/";
19     # Source: https://github.com/pyca/cryptography/tree/master/vectors;
20     license = with licenses; [ asl20 bsd3 ];
21     maintainers = with maintainers; [ primeos ];
22   };