1{ lib, buildPythonPackage, fetchPypi 2, requests, mock }: 3 4buildPythonPackage rec { 5 pname = "PyBrowserID"; 6 version = "0.14.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1qvi79kfb8x9kxkm5lw2mp42hm82cpps1xknmsb5ghkwx1lpc8kc"; 11 }; 12 13 propagatedBuildInputs = [ requests ]; 14 15 nativeCheckInputs = [ mock ]; 16 17 meta = with lib; { 18 description = "Python library for the BrowserID Protocol"; 19 homepage = "https://github.com/mozilla/PyBrowserID"; 20 license = licenses.mpl20; 21 maintainers = with maintainers; [ ]; 22 }; 23} 24