summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-12-25 23:09:53 +0000
committerOrivej Desh <orivej@gmx.fr>2018-12-26 02:52:28 +0000
commit84d133c8451646d4a55a2365b16983d08e41461a (patch)
treeaf30de4d4a365a11906c27310eaa3163a14ae22b /pkgs/development
parent6137c6de6c521ee70e69d2a1edf49155ee13d823 (diff)
downloadnixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar.gz
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar.bz2
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar.lz
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar.xz
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.tar.zst
nixpkgs-84d133c8451646d4a55a2365b16983d08e41461a.zip
pythonPackages.secretstorage: init at 2.3.1 for Python 2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/secretstorage/2.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/secretstorage/2.nix b/pkgs/development/python-modules/secretstorage/2.nix
new file mode 100644
index 00000000000..8fa044e638a
--- /dev/null
+++ b/pkgs/development/python-modules/secretstorage/2.nix
@@ -0,0 +1,24 @@
+{ lib, fetchPypi, buildPythonPackage, cryptography, dbus-python }:
+
+buildPythonPackage rec {
+  pname = "secretstorage";
+  version = "2.3.1";
+
+  src = fetchPypi {
+    pname = "SecretStorage";
+    inherit version;
+    sha256 = "1di9gx4m27brs6ar774m64s017iz742mnmw39kvfc8skfs3mrxis";
+  };
+
+  propagatedBuildInputs = [ cryptography dbus-python ];
+
+  # Needs a D-Bus Sesison
+  doCheck = false;
+
+  meta = with lib; {
+    homepage = https://github.com/mitya57/secretstorage;
+    description = "Python bindings to FreeDesktop.org Secret Service API";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ orivej ];
+  };
+}