summary refs log tree commit diff
path: root/pkgs/development/python-modules/cryptography
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-01-23 23:58:29 +0100
committerMichael Weiss <dev.primeos@gmail.com>2019-01-24 00:01:31 +0100
commitf88f64365906e6c9aca5174a78046be47f8822e5 (patch)
treef53d5dfbfcb30c164bd7246911510543fda81422 /pkgs/development/python-modules/cryptography
parent8449cc5b11a4f4c11772b83174c09f9aef7eb9b7 (diff)
downloadnixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar.gz
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar.bz2
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar.lz
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar.xz
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.tar.zst
nixpkgs-f88f64365906e6c9aca5174a78046be47f8822e5.zip
python37Packages.cryptography: Add meta-attributes
Diffstat (limited to 'pkgs/development/python-modules/cryptography')
-rw-r--r--pkgs/development/python-modules/cryptography/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cryptography/default.nix b/pkgs/development/python-modules/cryptography/default.nix
index 603f92336c0..ab4aa8e89fd 100644
--- a/pkgs/development/python-modules/cryptography/default.nix
+++ b/pkgs/development/python-modules/cryptography/default.nix
@@ -66,4 +66,18 @@ buildPythonPackage rec {
   # IOKit's dependencies are inconsistent between OSX versions, so this is the best we
   # can do until nix 1.11's release
   __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 ];
+  };
 }