summary refs log tree commit diff
path: root/pkgs/development/python-modules/secretstorage/2.nix
blob: 8fa044e638a40353e6fd0da1b53962b40b6c4bd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}