Merge pull request #133190 from risicle/ris-gremlinpython-3.5.1

python3Packages.gremlinpython: 3.4.10 -> 3.5.1

authored by

Martin Weinelt and committed by
GitHub
39ef6795 d63e4e23

+8 -6
+8 -6
pkgs/development/python-modules/gremlinpython/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , aenum 5 + , aiohttp 5 6 , importlib-metadata 6 7 , isodate 8 + , nest-asyncio 7 9 , six 8 - , tornado 9 10 , pytestCheckHook 10 11 , mock 11 12 , pyhamcrest ··· 14 15 15 16 buildPythonPackage rec { 16 17 pname = "gremlinpython"; 17 - version = "3.4.10"; 18 + version = "3.5.1"; 18 19 19 20 # pypi tarball doesn't include tests 20 21 src = fetchFromGitHub { 21 22 owner = "apache"; 22 23 repo = "tinkerpop"; 23 24 rev = version; 24 - sha256 = "0i9lkrwbsmpx1h9480vf97pibm2v37sgw2qm2r1c0i8gg5bcmhj3"; 25 + sha256 = "1vlhxq0f2hanhkv6f17dxgbwr7gnbnh1kkkq0lxcwkbm2l0rdrlr"; 25 26 }; 26 - sourceRoot = "source/gremlin-python/src/main/jython"; 27 + sourceRoot = "source/gremlin-python/src/main/python"; 27 28 postPatch = '' 28 29 substituteInPlace setup.py \ 29 30 --replace 'aenum>=1.4.5,<3.0.0' 'aenum' \ 30 - --replace 'tornado>=4.4.1,<6.0' 'tornado' \ 31 + --replace 'aiohttp>=3.7.0,<=3.7.4' 'aiohttp' \ 31 32 --replace 'PyHamcrest>=1.9.0,<2.0.0' 'PyHamcrest' \ 32 33 --replace 'radish-bdd==0.8.6' 'radish-bdd' \ 33 34 --replace 'mock>=3.0.5,<4.0.0' 'mock' \ ··· 42 43 ]; 43 44 propagatedBuildInputs = [ 44 45 aenum 46 + aiohttp 45 47 isodate 48 + nest-asyncio 46 49 six 47 - tornado 48 50 ]; 49 51 50 52 checkInputs = [