pythonPackages.cryptography_vectors: Add meta-attributes

This commit is contained in:
Michael Weiss 2019-01-24 11:57:32 +01:00
parent ee82616089
commit 79e699096d
No known key found for this signature in database
GPG key ID: 5BE487C4D4771D83

View file

@ -1,6 +1,4 @@
{ buildPythonPackage
, fetchPypi
}:
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
# also bump cryptography
@ -14,4 +12,12 @@ buildPythonPackage rec {
# 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 ];
};
}