Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }: 2 3buildPythonPackage rec { 4 pname = "google-i18n-address"; 5 version = "2.3.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1kkg3x92m40z0mw712z9apnrw08qsx0f9lj7lfgddkdbx4vd8v3w"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 checkInputs = [ pytest pytestcov mock ]; 15 16 meta = with lib; { 17 description = "Google's i18n address data packaged for Python"; 18 homepage = "https://pypi.org/project/google-i18n-address/"; 19 maintainers = with maintainers; [ ]; 20 license = licenses.bsd3; 21 }; 22}