Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 437 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pyotp"; 5 version = "2.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "18d13ikra1iq0xyfqfm72zhgwxi2qi9ps6z1a6zmqp4qrn57wlzw"; 10 }; 11 12 meta = with lib; { 13 description = "Python One Time Password Library"; 14 homepage = https://github.com/pyotp/pyotp; 15 license = licenses.mit; 16 maintainers = with maintainers; [ dotlambda ]; 17 }; 18}