aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/translationstring/default.nix
blob: 0933b90ede9f74eccaf158a092e949030d3c3f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "translationstring";
  version = "1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d";
  };

  meta = with stdenv.lib; {
    homepage = "https://pylonsproject.org/";
    description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
    license = licenses.bsd0;
    maintainers = with maintainers; [ domenkozar ];
  };

}