Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 24 lines 638 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, requests }: 3 4buildPythonPackage rec { 5 pname = "yubico-client"; 6 version = "1.10.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0skkmrpvpb1pwyqjf3lh9vq46xagvwdx9kagpdbba2v5dgrk34d1"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 # pypi package missing test_utils and github releases is behind 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Verifying Yubico OTPs based on the validation protocol version 2.0"; 20 homepage = https://github.com/Kami/python-yubico-client/; 21 maintainers= with maintainers; [ peterromfeldhk ]; 22 license = licenses.bsd3; 23 }; 24}