forked from mirrors/nixpkgs
python37Packages.cryptography: Add meta-attributes
This commit is contained in:
parent
8449cc5b11
commit
f88f643659
1 changed files with 14 additions and 0 deletions
|
@ -66,4 +66,18 @@ buildPythonPackage rec {
|
||||||
# IOKit's dependencies are inconsistent between OSX versions, so this is the best we
|
# IOKit's dependencies are inconsistent between OSX versions, so this is the best we
|
||||||
# can do until nix 1.11's release
|
# can do until nix 1.11's release
|
||||||
__impureHostDeps = [ "/usr/lib" ];
|
__impureHostDeps = [ "/usr/lib" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A package which provides cryptographic recipes and primitives";
|
||||||
|
longDescription = ''
|
||||||
|
Cryptography includes both high level recipes and low level interfaces to
|
||||||
|
common cryptographic algorithms such as symmetric ciphers, message
|
||||||
|
digests, and key derivation functions.
|
||||||
|
Our goal is for it to be your "cryptographic standard library". It
|
||||||
|
supports Python 2.7, Python 3.4+, and PyPy 5.3+.
|
||||||
|
'';
|
||||||
|
homepage = https://github.com/pyca/cryptography;
|
||||||
|
license = with licenses; [ asl20 bsd3 psfl ];
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue