Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }: 2 3buildPythonPackage rec { 4 pname = "secretstorage"; 5 version = "3.1.1"; 6 7 disabled = pythonOlder "3.5"; 8 9 src = fetchPypi { 10 pname = "SecretStorage"; 11 inherit version; 12 sha256 = "14lznnn916ddn6yrd3w2nr2zq49zc8hw53yjz1k9yhd492p9gir0"; 13 }; 14 15 propagatedBuildInputs = [ 16 cryptography 17 jeepney 18 ]; 19 20 # Needs a D-Bus Sesison 21 doCheck = false; 22 23 meta = with lib; { 24 homepage = "https://github.com/mitya57/secretstorage"; 25 description = "Python bindings to FreeDesktop.org Secret Service API"; 26 license = licenses.bsd3; 27 maintainers = with maintainers; [ teto ]; 28 }; 29}