about summary refs log tree commit diff
path: root/pkgs/development/python-modules/translationstring
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-29 11:19:15 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:51:06 -0400
commit7ab3b624866d4423dd3c85176b2bc27cfb7834b6 (patch)
tree51b3f6a90bd185faef215066f0dc2bf468923a75 /pkgs/development/python-modules/translationstring
parent0fd1905e8cb1fcebe77e2f2bb08555210549f260 (diff)
pythonPAckages.translationstring: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/translationstring')
-rw-r--r--pkgs/development/python-modules/translationstring/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/translationstring/default.nix b/pkgs/development/python-modules/translationstring/default.nix
new file mode 100644
index 0000000000000..56640a4c06772
--- /dev/null
+++ b/pkgs/development/python-modules/translationstring/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "translationstring";
+  version = "1.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://pylonsproject.org/;
+    description = "Utility library for i18n relied on by various Repoze and Pyramid packages";
+    license = licenses.bsd0;
+    maintainers = with maintainers; [ garbas domenkozar ];
+  };
+
+}