2019-03-02 09:31:30 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, cryptography }:
|
2018-02-03 10:35:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cryptography_vectors";
|
2019-03-02 09:31:30 +00:00
|
|
|
# The test vectors must have the same version as the cryptography package:
|
|
|
|
version = cryptography.version;
|
2018-02-03 10:35:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-03-02 11:11:33 +00:00
|
|
|
sha256 = "1bsqcv3h49dzqnyn29ijq8r7k1ra8ikl1y9qcpcns9nbvhaq3wq3";
|
2018-02-03 10:35:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# No tests included
|
|
|
|
doCheck = false;
|
2019-01-24 10:57:32 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
2019-01-14 15:05:59 +00:00
|
|
|
}
|