pythonPackages.nest-asyncio: init at 0.9.1

This commit is contained in:
Chris Ostrouchov 2018-09-20 15:57:05 -04:00 committed by Frederik Rietdijk
parent e8bcf55d34
commit 343a5b4e63
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -382,6 +382,8 @@ in {
mwoauth = callPackage ../development/python-modules/mwoauth { };
nest-asyncio = callPackage ../development/python-modules/nest-asyncio { };
neuron = pkgs.neuron.override {
inherit python;
};