b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
32 lines
760 B
Nix
32 lines
760 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, atpublic
|
|
, pdm-pep517
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flufl.i18n";
|
|
version = "4.1.1";
|
|
format = "pyproject";
|
|
|
|
nativeBuildInputs = [ pdm-pep517 ];
|
|
propagatedBuildInputs = [ atpublic ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "flufl.i18n" ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-wKz6aggkJ9YBJ+o75XjC4Ddnn+Zi9hlYDnliwTc7DNs=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A high level API for internationalizing Python libraries and applications";
|
|
homepage = "https://gitlab.com/warsaw/flufl.i18n";
|
|
changelog = "https://gitlab.com/warsaw/flufl.i18n/-/raw/${version}/docs/NEWS.rst";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|