Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / l18n / default.nix
blob29c4164097f964b0997b463770bb0de79c52517b
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , pytz
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "l18n";
10   version = "2021.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-GVbokNZz0XE1zCCRMlPBVPa8HAAmbCK31QPMGlpC2Eg=";
16   };
18   propagatedBuildInputs = [ pytz six ];
20   # tests are not included in sdist and building from source is none trivial
21   doCheck = false;
23   pythonImportsCheck = [ "l18n" ];
25   meta = with lib; {
26     description = "Locale internationalization package";
27     homepage = "https://github.com/tkhyn/l18n";
28     changelog = "https://github.com/tkhyn/l18n/blob/${version}/CHANGES.rst";
29     license = licenses.mit;
30     maintainers = with maintainers; [ sephi ];
31   };