pythonPackages.gevent-socketio: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
5582de06a7
commit
cdd7e77ac4
29
pkgs/development/python-modules/gevent-socketio/default.nix
Normal file
29
pkgs/development/python-modules/gevent-socketio/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, versiontools
|
||||
, gevent-websocket
|
||||
, mock
|
||||
, pytest
|
||||
, gevent
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gevent-socketio";
|
||||
version = "0.3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zra86hg2l1jcpl9nsnqagy3nl3akws8bvrbpgdxk15x7ywllfak";
|
||||
};
|
||||
|
||||
buildInputs = [ versiontools gevent-websocket mock pytest ];
|
||||
propagatedBuildInputs = [ gevent ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/abourget/gevent-socketio;
|
||||
description = "SocketIO server based on the Gevent pywsgi server, a Python network library";
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user