blob: 9e3b9f81e97dcfad4d81860f8e8f9a0366a2c96e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
tornado,
}:
buildPythonPackage rec {
pname = "sockjs-tornado";
version = "1.0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "02ff25466b3a46b1a7dbe477340b042770ac078de7ea475a6285a28a75eb1fab";
};
propagatedBuildInputs = [ tornado ];
meta = {
homepage = "https://github.com/mrjoes/sockjs-tornado/";
description = "SockJS python server implementation on top of Tornado framework";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|