about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flufl/i18n.nix
blob: 57a33e233cf60bf3aca244ba1f78a9619d36ac24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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;
    hash = "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; [ ];
  };
}