2020-04-19 17:43:11 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }:
|
2017-08-28 01:11:20 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "secretstorage";
|
2021-03-02 12:54:18 +00:00
|
|
|
version = "3.3.1";
|
2017-08-28 01:11:20 +01:00
|
|
|
|
2018-12-12 10:13:22 +00:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "SecretStorage";
|
|
|
|
inherit version;
|
2021-03-02 12:54:18 +00:00
|
|
|
sha256 = "15ginv4gzxrx77n7517xnvf2jcpqc6ran12s951hc85zlr8nqrpx";
|
2017-08-28 01:11:20 +01:00
|
|
|
};
|
|
|
|
|
2018-12-12 10:13:22 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
cryptography
|
|
|
|
jeepney
|
|
|
|
];
|
2017-08-28 01:11:20 +01:00
|
|
|
|
2018-12-12 10:13:22 +00:00
|
|
|
# Needs a D-Bus Sesison
|
|
|
|
doCheck = false;
|
2017-08-28 01:11:20 +01:00
|
|
|
|
2018-12-12 10:13:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mitya57/secretstorage";
|
2017-08-28 01:11:20 +01:00
|
|
|
description = "Python bindings to FreeDesktop.org Secret Service API";
|
2018-12-26 01:09:06 +00:00
|
|
|
license = licenses.bsd3;
|
2017-12-05 22:20:11 +00:00
|
|
|
maintainers = with maintainers; [ teto ];
|
2017-08-28 01:11:20 +01:00
|
|
|
};
|
|
|
|
}
|