Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 758 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, atpublic 5, pdm-pep517 6}: 7 8buildPythonPackage rec { 9 pname = "flufl.i18n"; 10 version = "4.1.1"; 11 format = "pyproject"; 12 13 nativeBuildInputs = [ pdm-pep517 ]; 14 propagatedBuildInputs = [ atpublic ]; 15 16 doCheck = false; 17 18 pythonImportsCheck = [ "flufl.i18n" ]; 19 20 src = fetchPypi { 21 inherit pname version; 22 hash = "sha256-wKz6aggkJ9YBJ+o75XjC4Ddnn+Zi9hlYDnliwTc7DNs="; 23 }; 24 25 meta = with lib; { 26 description = "A high level API for internationalizing Python libraries and applications"; 27 homepage = "https://gitlab.com/warsaw/flufl.i18n"; 28 changelog = "https://gitlab.com/warsaw/flufl.i18n/-/raw/${version}/docs/NEWS.rst"; 29 license = licenses.asl20; 30 maintainers = with maintainers; [ ]; 31 }; 32}