depot/third_party/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

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; [ ];
};
}