Merge pull request #190040 from r-ryantm/auto-update/python310Packages.flufl_i18n

python310Packages.flufl_i18n: 4.1 -> 4.1.1
This commit is contained in:
Mario Rodas 2022-09-07 21:49:53 -05:00 committed by GitHub
commit 514c4d8c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,11 +1,13 @@
{ buildPythonPackage, fetchPypi
{ lib
, buildPythonPackage
, fetchPypi
, atpublic
, pdm-pep517
}:
buildPythonPackage rec {
pname = "flufl.i18n";
version = "4.1";
version = "4.1.1";
format = "pyproject";
nativeBuildInputs = [ pdm-pep517 ];
@ -17,6 +19,14 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "sha256-efEJ5rJXR7L0Lyh1loXC4h2ciGfXCJGD6iKyQuEph+E=";
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; [ ];
};
}