mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.nest-asyncio: init at 0.9.1
This commit is contained in:
parent
e8bcf55d34
commit
343a5b4e63
2 changed files with 25 additions and 0 deletions
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 { };
|
||||
|
||||
nest-asyncio = callPackage ../development/python-modules/nest-asyncio { };
|
||||
|
||||
neuron = pkgs.neuron.override {
|
||||
inherit python;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue