about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sockjs
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-11-18 15:51:36 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-18 10:57:17 -0800
commit95a170cda042ca425f67937bb1845f6a8b4f5be0 (patch)
treed5738b11ee22b66fcc6d46baeb4e07edf69634bb /pkgs/development/python-modules/sockjs
parentd0ca6b396ed286fd0cdfd13fc07a763ef1fe47a8 (diff)
python3Packages.sockjs: init at 0.11.0
Diffstat (limited to 'pkgs/development/python-modules/sockjs')
-rw-r--r--pkgs/development/python-modules/sockjs/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sockjs/default.nix b/pkgs/development/python-modules/sockjs/default.nix
new file mode 100644
index 0000000000000..d589179338fd5
--- /dev/null
+++ b/pkgs/development/python-modules/sockjs/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildPythonPackage, fetchPypi, aiohttp }:
+
+buildPythonPackage rec {
+  pname = "sockjs";
+  version = "0.11.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "A0fUBO2e8xllBnh+2AGPh+5OLQuupJ1CDN1TqWm+wik=";
+  };
+
+  propagatedBuildInputs = [ aiohttp ];
+
+  pythonImportsCheck = [ "sockjs" ];
+
+  meta = with lib; {
+    description = "Sockjs server";
+    homepage = "https://github.com/aio-libs/sockjs";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ freezeboy ];
+  };
+}