about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cryptography_vectors/default.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-01-24 11:57:32 +0100
committerMichael Weiss <dev.primeos@gmail.com>2019-01-24 11:59:24 +0100
commit79e699096d949d50d70e266b6964f9200f236b82 (patch)
tree364fb2c88fa096591cd4b639f23c4950b1b1b4cb /pkgs/development/python-modules/cryptography_vectors/default.nix
parentee82616089ff920792b6c265068902c4fa3d4f7f (diff)
pythonPackages.cryptography_vectors: Add meta-attributes
Diffstat (limited to 'pkgs/development/python-modules/cryptography_vectors/default.nix')
-rw-r--r--pkgs/development/python-modules/cryptography_vectors/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cryptography_vectors/default.nix b/pkgs/development/python-modules/cryptography_vectors/default.nix
index bcb60eb0d8dd7..6fc4d5a69efbf 100644
--- a/pkgs/development/python-modules/cryptography_vectors/default.nix
+++ b/pkgs/development/python-modules/cryptography_vectors/default.nix
@@ -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;
-}
\ No newline at end of file
+
+  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 ];
+  };
+}