2018-12-12 02:13:22 -08:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney, pygobject3 }:
|
2017-08-27 17:11:20 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "secretstorage";
|
2019-03-18 09:25:07 -07:00
|
|
|
version = "3.1.1";
|
2017-08-27 17:11:20 -07:00
|
|
|
|
2018-12-12 02:13:22 -08:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "SecretStorage";
|
|
|
|
inherit version;
|
2019-03-18 09:25:07 -07:00
|
|
|
sha256 = "14lznnn916ddn6yrd3w2nr2zq49zc8hw53yjz1k9yhd492p9gir0";
|
2017-08-27 17:11:20 -07:00
|
|
|
};
|
|
|
|
|
2018-12-12 02:13:22 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
cryptography
|
|
|
|
jeepney
|
|
|
|
pygobject3
|
|
|
|
];
|
2017-08-27 17:11:20 -07:00
|
|
|
|
2018-12-12 02:13:22 -08:00
|
|
|
# Needs a D-Bus Sesison
|
|
|
|
doCheck = false;
|
2017-08-27 17:11:20 -07:00
|
|
|
|
2018-12-12 02:13:22 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/mitya57/secretstorage";
|
2017-08-27 17:11:20 -07:00
|
|
|
description = "Python bindings to FreeDesktop.org Secret Service API";
|
2018-12-25 17:09:06 -08:00
|
|
|
license = licenses.bsd3;
|
2017-12-05 14:20:11 -08:00
|
|
|
maintainers = with maintainers; [ teto ];
|
2017-08-27 17:11:20 -07:00
|
|
|
};
|
|
|
|
}
|