python3Packages.python-engineio: 3.13.2 -> 4.0.0
This commit is contained in:
parent
5a18a52a57
commit
a050391994
|
@ -1,4 +1,6 @@
|
||||||
{ stdenv, buildPythonPackage, fetchFromGitHub
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, eventlet
|
, eventlet
|
||||||
, iana-etc
|
, iana-etc
|
||||||
|
@ -14,19 +16,15 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-engineio";
|
pname = "python-engineio";
|
||||||
version = "3.13.2";
|
version = "4.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "miguelgrinberg";
|
owner = "miguelgrinberg";
|
||||||
repo = "python-engineio";
|
repo = "python-engineio";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1hn5nnxp7y2dpf52vrwdxza2sqmzj8admcnwgjkmcxk65s2dhvy1";
|
sha256 = "00x9pmmnl1yd59wd96ivkiqh4n5nphl8cwk43hf4nqr0icgsyhar";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
six
|
|
||||||
];
|
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
aiohttp
|
aiohttp
|
||||||
eventlet
|
eventlet
|
||||||
|
|
Loading…
Reference in New Issue