mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
python3Packages.sockjs: init at 0.11.0
This commit is contained in:
parent
d0ca6b396e
commit
95a170cda0
22
pkgs/development/python-modules/sockjs/default.nix
Normal file
22
pkgs/development/python-modules/sockjs/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -6737,6 +6737,8 @@ in {
|
||||
usePython = true;
|
||||
});
|
||||
|
||||
sockjs = callPackage ../development/python-modules/sockjs { };
|
||||
|
||||
sockjs-tornado = callPackage ../development/python-modules/sockjs-tornado { };
|
||||
|
||||
socksipy-branch = callPackage ../development/python-modules/socksipy-branch { };
|
||||
|
Loading…
Reference in New Issue
Block a user