python3Packages.aiorun: init at 2019.11.1
This commit is contained in:
parent
b443abf914
commit
21770f817c
45
pkgs/development/python-modules/aiorun/default.nix
Normal file
45
pkgs/development/python-modules/aiorun/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, isPy27
|
||||||
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, uvloop
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "aiorun";
|
||||||
|
version = "2019.11.1";
|
||||||
|
format = "flit";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cjrh";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "04p3sci6af6qqfkcqamsqhmqqrigcwvl4bmx8yv5ppvkyq39pxi7";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytestcov
|
||||||
|
uvloop
|
||||||
|
];
|
||||||
|
|
||||||
|
# allow for writable directory for darwin
|
||||||
|
preBuild = ''
|
||||||
|
export HOME=$TMPDIR
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Boilerplate for asyncio applications";
|
||||||
|
homepage = https://github.com/cjrh/aiorun;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
@ -165,6 +165,8 @@ in {
|
|||||||
|
|
||||||
aioredis = callPackage ../development/python-modules/aioredis { };
|
aioredis = callPackage ../development/python-modules/aioredis { };
|
||||||
|
|
||||||
|
aiorun = callPackage ../development/python-modules/aiorun { };
|
||||||
|
|
||||||
ansicolor = callPackage ../development/python-modules/ansicolor { };
|
ansicolor = callPackage ../development/python-modules/ansicolor { };
|
||||||
|
|
||||||
ansiwrap = callPackage ../development/python-modules/ansiwrap { };
|
ansiwrap = callPackage ../development/python-modules/ansiwrap { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user