depot/third_party/nixpkgs/pkgs/development/python-modules/secretstorage/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

29 lines
675 B
Nix

{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }:
buildPythonPackage rec {
pname = "secretstorage";
version = "3.3.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
pname = "SecretStorage";
inherit version;
sha256 = "15ginv4gzxrx77n7517xnvf2jcpqc6ran12s951hc85zlr8nqrpx";
};
propagatedBuildInputs = [
cryptography
jeepney
];
# 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 ];
};
}