nixpkgs/pkgs/development/python-modules/secretstorage/default.nix
2022-09-19 10:37:43 +02:00

41 lines
753 B
Nix

{ lib
, buildPythonPackage
, cryptography
, fetchPypi
, jeepney
, pythonOlder
}:
buildPythonPackage rec {
pname = "secretstorage";
version = "3.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "SecretStorage";
inherit version;
hash = "sha256-JANTPvNp7KbSuoFxhXbF4PVk1cyhtY9zqLI+fU7uvXc=";
};
propagatedBuildInputs = [
cryptography
jeepney
];
# Needs a D-Bus session
doCheck = false;
pythonImportsCheck = [
"secretstorage"
];
meta = with lib; {
description = "Python bindings to FreeDesktop.org Secret Service API";
homepage = "https://github.com/mitya57/secretstorage";
license = licenses.bsd3;
maintainers = with maintainers; [ teto ];
};
}