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