python3Packages.aiorun: 2020.6.1 -> 2020.12.1

This commit is contained in:
Fabian Affolter 2021-03-16 23:49:42 +01:00 committed by Jonathan Ringer
parent f766ac2baf
commit 8c44c87703

View File

@ -1,25 +1,24 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, isPy27 , pythonOlder
, pygments , pygments
, pytestCheckHook , pytestCheckHook
, pytestcov , pytest-cov
, uvloop , uvloop
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiorun"; pname = "aiorun";
version = "2020.6.1"; version = "2020.12.1";
format = "flit"; format = "flit";
disabled = pythonOlder "3.5";
disabled = isPy27;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cjrh"; owner = "cjrh";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "00mq5ylhhdfdqrh7zdqabf3wy85jrkqvgfb1421ll46fsjim2d14"; sha256 = "sha256-ktc2cmoPNYcsVyKCWs+ivhV5onywFIrdDRBiBKrdiF4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -28,7 +27,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
pytestcov pytest-cov
uvloop uvloop
]; ];
@ -43,6 +42,6 @@ buildPythonPackage rec {
description = "Boilerplate for asyncio applications"; description = "Boilerplate for asyncio applications";
homepage = "https://github.com/cjrh/aiorun"; homepage = "https://github.com/cjrh/aiorun";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }