Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / l18n / default.nix
blobcab48d4376f8e72648b2ae2ebb9579a73fc45b74
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , pytz
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "l18n";
10   version = "2021.3";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-GVbokNZz0XE1zCCRMlPBVPa8HAAmbCK31QPMGlpC2Eg=";
15   };
17   propagatedBuildInputs = [ pytz six ];
19   # tests are not included in sdist and building from source is none trivial
20   doCheck = false;
22   pythonImportsCheck = [ "l18n" ];
24   meta = with lib; {
25     description = "Locale internationalization package";
26     homepage = "https://github.com/tkhyn/l18n";
27     changelog = "https://github.com/tkhyn/l18n/blob/${version}/CHANGES.rst";
28     license = licenses.mit;
29     maintainers = with maintainers; [ sephi ];
30   };