Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.11 17 lines 340 B view raw
1{ buildPythonPackage, fetchPypi, atpublic }: 2 3buildPythonPackage rec { 4 pname = "flufl.i18n"; 5 version = "3.2"; 6 7 propagatedBuildInputs = [ atpublic ]; 8 9 doCheck = false; 10 11 pythonImportsCheck = [ "flufl.i18n" ]; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-w1yPjqtmrbf9ZKFCCGAQUGbSs2y2VbM/+xSv6OIj7WI="; 16 }; 17}