mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
python3Packages.gremlinpython: 3.6.0 -> 3.6.1
This commit is contained in:
parent
6c31998243
commit
a8e9142130
1 changed files with 7 additions and 3 deletions
|
@ -15,19 +15,23 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "gremlinpython";
|
pname = "gremlinpython";
|
||||||
version = "3.6.0";
|
version = "3.6.1";
|
||||||
|
|
||||||
# pypi tarball doesn't include tests
|
# pypi tarball doesn't include tests
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "apache";
|
owner = "apache";
|
||||||
repo = "tinkerpop";
|
repo = "tinkerpop";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0gyf3a0zbh1grc1vr9zzpqm5yfcjvn0f1akw9l1arq36isqwvydn";
|
sha256 = "sha256-FMA9hJdq7gYkDtQO04Bwpjq2Q7nXGuN9wrBD4b9GgwY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "source/gremlin-python/src/main/python";
|
sourceRoot = "source/gremlin-python/src/main/python";
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
sed -i '/pytest-runner/d' setup.py
|
||||||
|
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace 'pytest-runner==5.2' ' '
|
--replace 'aiohttp>=3.8.0,<=3.8.1' 'aiohttp'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# setup-requires requirements
|
# setup-requires requirements
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue