1{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }:
2
3buildPythonPackage rec {
4 pname = "secretstorage";
5 version = "3.3.1";
6
7 disabled = pythonOlder "3.5";
8
9 src = fetchPypi {
10 pname = "SecretStorage";
11 inherit version;
12 sha256 = "15ginv4gzxrx77n7517xnvf2jcpqc6ran12s951hc85zlr8nqrpx";
13 };
14
15 propagatedBuildInputs = [
16 cryptography
17 jeepney
18 ];
19
20 # Needs a D-Bus Sesison
21 doCheck = false;
22
23 meta = with lib; {
24 homepage = "https://github.com/mitya57/secretstorage";
25 description = "Python bindings to FreeDesktop.org Secret Service API";
26 license = licenses.bsd3;
27 maintainers = with maintainers; [ teto ];
28 };
29}