nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 28 lines 624 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 requests, 6}: 7 8buildPythonPackage rec { 9 pname = "yubico-client"; 10 version = "1.13.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "e3b86cd2a123105edfacad40551c7b26e9c1193d81ffe168ee704ebfd3d11162"; 16 }; 17 18 propagatedBuildInputs = [ requests ]; 19 20 # pypi package missing test_utils and github releases is behind 21 doCheck = false; 22 23 meta = { 24 description = "Verifying Yubico OTPs based on the validation protocol version 2.0"; 25 homepage = "https://github.com/Kami/python-yubico-client/"; 26 license = lib.licenses.bsd3; 27 }; 28}