pythonPackages.nest-asyncio: init at 0.9.1
This commit is contained in:
parent
e8bcf55d34
commit
343a5b4e63
23
pkgs/development/python-modules/nest-asyncio/default.nix
Normal file
23
pkgs/development/python-modules/nest-asyncio/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonAtLeast
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.9.1";
|
||||||
|
pname = "nest_asyncio";
|
||||||
|
disabled = !(pythonAtLeast "3.5");
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0844af67deda3243389d47cd8754b6775c5c828345e0277beca7bd008d273392";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/erdewit/nest_asyncio;
|
||||||
|
description = "Patch asyncio to allow nested event loops";
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -382,6 +382,8 @@ in {
|
|||||||
|
|
||||||
mwoauth = callPackage ../development/python-modules/mwoauth { };
|
mwoauth = callPackage ../development/python-modules/mwoauth { };
|
||||||
|
|
||||||
|
nest-asyncio = callPackage ../development/python-modules/nest-asyncio { };
|
||||||
|
|
||||||
neuron = pkgs.neuron.override {
|
neuron = pkgs.neuron.override {
|
||||||
inherit python;
|
inherit python;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user