pythonPackages.cryptography_vectors: Add meta-attributes
This commit is contained in:
parent
ee82616089
commit
79e699096d
|
@ -1,6 +1,4 @@
|
||||||
{ buildPythonPackage
|
{ buildPythonPackage, fetchPypi, lib }:
|
||||||
, fetchPypi
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
# also bump cryptography
|
# also bump cryptography
|
||||||
|
@ -14,4 +12,12 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# No tests included
|
# No tests included
|
||||||
doCheck = false;
|
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 ];
|
||||||
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue