Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6 7 keyring, 8 setuptools-scm, 9}: 10 11buildPythonPackage rec { 12 pname = "keyrings.passwordstore"; 13 version = "0.1.0"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-pylZw45FUtLHzUV4cDyl/nT8tCZwNj4Jf41MMlyskoU="; 19 }; 20 21 nativeBuildInputs = [ setuptools-scm ]; 22 23 nativeCheckInputs = [ keyring ]; 24 25 pythonImportsCheck = [ "keyrings.passwordstore.backend" ]; 26 27 meta = { 28 license = lib.licenses.mit; 29 description = "Keyring backend for password-store"; 30 homepage = "https://github.com/stv0g/keyrings.passwordstore"; 31 maintainers = [ lib.maintainers.shlevy ]; 32 broken = true; # https://github.com/stv0g/keyrings.passwordstore/issues/2 33 }; 34}