about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/secretstorage/default.nix
blob: bff45c7f2c3cda967e6d55fa2b337a688f57ade0 (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
25
26
27
28
29
30
{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney, pygobject3 }:

buildPythonPackage rec {
  pname = "secretstorage";
  version = "3.1.0";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    pname = "SecretStorage";
    inherit version;
    sha256 = "12vxzradibfmznssh7x2zd7qym2hl7wn34fn2yn58pnx6sykrai9";
  };

  propagatedBuildInputs = [
    cryptography
    jeepney
    pygobject3
  ];

  # 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; [ teto ];
  };
}