pythonPackages.aioextensions: init at 20.11.1517005
This commit is contained in:
parent
eafb0c886d
commit
04a641bd4f
|
@ -0,0 +1,35 @@
|
|||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, pythonOlder
|
||||
|
||||
# Python dependencies
|
||||
, uvloop
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioextensions";
|
||||
version = "20.11.1517005";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10b8ddhd77ixxi2i8mw86m388smp324f7rr0mdpkwdb0ra99ra8m";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ uvloop ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkPhase = ''
|
||||
cd test/
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "High performance functions to work with the async IO";
|
||||
homepage = "https://kamadorueda.github.io/aioextensions";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kamadorueda ];
|
||||
};
|
||||
}
|
|
@ -202,6 +202,8 @@ in {
|
|||
|
||||
aioeventlet = callPackage ../development/python-modules/aioeventlet { };
|
||||
|
||||
aioextensions = callPackage ../development/python-modules/aioextensions { };
|
||||
|
||||
aiofiles = callPackage ../development/python-modules/aiofiles { };
|
||||
|
||||
aioftp = callPackage ../development/python-modules/aioftp { };
|
||||
|
|
Loading…
Reference in New Issue