mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
Merge pull request #67266 from praetorg/patch-1
gevent-websocket: enable python3
This commit is contained in:
commit
578a619aee
@ -3,20 +3,19 @@
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, gevent
|
||||
, gunicorn
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gevent-websocket";
|
||||
version = "0.10.1";
|
||||
# SyntaxError in tests.
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1c2zv2rahp1gil3cj66hfsqgy0n35hz9fny3ywhr2319d0lz7bky";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ gevent ];
|
||||
propagatedBuildInputs = [ gevent gunicorn ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.gitlab.com/noppo/gevent-websocket;
|
||||
|
Loading…
Reference in New Issue
Block a user