summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJonathan Queiroz <github@johnjq.com>2018-11-04 11:00:21 -0300
committerRobert Schütz <rschuetz17@gmail.com>2018-11-04 15:00:21 +0100
commit05f368b60a68cdb76a70a499c2c413e16bf7ab51 (patch)
tree3c05de868a996cc23f69b726079f3b3e727a8d58 /pkgs/development/python-modules
parent423f4f478ed57fbfa6faebb7de24680fccee690b (diff)
downloadnixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar.gz
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar.bz2
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar.lz
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar.xz
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.tar.zst
nixlib-05f368b60a68cdb76a70a499c2c413e16bf7ab51.zip
pythonPackages.sslib: init at 0.2.0 (#47985)
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/sslib/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sslib/default.nix b/pkgs/development/python-modules/sslib/default.nix
new file mode 100644
index 000000000000..3e5be211d42b
--- /dev/null
+++ b/pkgs/development/python-modules/sslib/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
+
+buildPythonPackage rec {
+  pname = "sslib";
+  version = "0.2.0";
+  disabled = !isPy3k;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0b5zrjkvx4klmv57pzhcmvbkdlyn745mn02k7hp811hvjrhbz417";
+  };
+
+  # No tests available
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/jqueiroz/python-sslib;
+    description = "A Python3 library for sharing secrets";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jqueiroz ];
+  };
+}