python310Packages.secretstorage: 3.3.1 -> 3.3.2

main
Fabian Affolter 2 years ago committed by Matthieu Coudron
parent ea253177f0
commit a7ca41f1ff
  1. 23
      pkgs/development/python-modules/secretstorage/default.nix

@ -1,15 +1,22 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }:
{ lib
, buildPythonPackage
, cryptography
, fetchPypi
, jeepney
, pythonOlder
}:
buildPythonPackage rec {
pname = "secretstorage";
version = "3.3.1";
version = "3.3.2";
format = "setuptools";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "SecretStorage";
inherit version;
sha256 = "15ginv4gzxrx77n7517xnvf2jcpqc6ran12s951hc85zlr8nqrpx";
hash = "sha256-Co65ZFsyCIHCIugnwm9M/PVTY+izdKAhmB74hmV6kS8=";
};
propagatedBuildInputs = [
@ -17,12 +24,16 @@ buildPythonPackage rec {
jeepney
];
# Needs a D-Bus Sesison
# Needs a D-Bus session
doCheck = false;
pythonImportsCheck = [
"secretstorage"
];
meta = with lib; {
homepage = "https://github.com/mitya57/secretstorage";
description = "Python bindings to FreeDesktop.org Secret Service API";
homepage = "https://github.com/mitya57/secretstorage";
license = licenses.bsd3;
maintainers = with maintainers; [ teto ];
};

Loading…
Cancel
Save