about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sockjs-tornado
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2018-02-25 20:27:10 +0300
committerNikolay Amiantov <ab@fmap.me>2018-02-25 22:24:10 +0300
commit2cad4e61db851ed65b76031d5a87dbe0c28be20e (patch)
tree4e1ec2bd60c08aa7f13c06592ee3083a45a562c9 /pkgs/development/python-modules/sockjs-tornado
parent67487427e9b038c6a2c91411318223ea4a0eeeb1 (diff)
python.pkgs.sockjs-tornado: move to a separate file
Diffstat (limited to 'pkgs/development/python-modules/sockjs-tornado')
-rw-r--r--pkgs/development/python-modules/sockjs-tornado/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sockjs-tornado/default.nix b/pkgs/development/python-modules/sockjs-tornado/default.nix
new file mode 100644
index 0000000000000..eff799e0d014a
--- /dev/null
+++ b/pkgs/development/python-modules/sockjs-tornado/default.nix
@@ -0,0 +1,20 @@
+{ lib, buildPythonPackage, fetchurl, tornado }:
+
+buildPythonPackage rec {
+  name = "sockjs-tornado-${version}";
+  version = "1.0.3";
+
+  src = fetchurl {
+    url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz";
+    sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd";
+  };
+
+  propagatedBuildInputs = [ tornado ];
+
+  meta = with lib; {
+    homepage = http://github.com/mrjoes/sockjs-tornado/;
+    description = "SockJS python server implementation on top of Tornado framework";
+    license = licenses.mit;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}