2019-02-24 19:02:24 +01:00
|
|
|
{ lib
|
2018-10-14 16:36:50 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
, setuptools
|
|
|
|
, pytestrunner
|
|
|
|
, pytest
|
|
|
|
, pytest-asyncio
|
|
|
|
, twisted
|
|
|
|
, treq
|
|
|
|
, tornado
|
|
|
|
, aiohttp
|
|
|
|
, uritemplate
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gidgethub";
|
2019-12-19 20:31:11 +01:00
|
|
|
version = "3.2.0";
|
2018-10-14 16:36:50 +02:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 20:31:11 +01:00
|
|
|
sha256 = "8f4b69063a256994d38243cc0eba4e1453017b5b8b04a173216d02d47ffc3989";
|
2018-10-14 16:36:50 +02:00
|
|
|
};
|
|
|
|
|
2019-02-24 19:02:24 +01:00
|
|
|
nativeBuildInputs = [ setuptools pytestrunner ];
|
2018-10-14 16:36:50 +02:00
|
|
|
checkInputs = [ pytest pytest-asyncio twisted treq tornado aiohttp ];
|
|
|
|
propagatedBuildInputs = [ uritemplate ];
|
|
|
|
|
2019-02-24 19:02:24 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "extras_require=extras_require," "extras_require=None,"
|
|
|
|
'';
|
|
|
|
|
2018-10-14 16:36:50 +02:00
|
|
|
# requires network (reqests github.com)
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-02-24 19:02:24 +01:00
|
|
|
meta = with lib; {
|
2018-10-14 16:36:50 +02:00
|
|
|
description = "An async GitHub API library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/brettcannon/gidgethub";
|
2018-10-14 16:36:50 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
};
|
|
|
|
}
|