summary refs log tree commit diff
path: root/pkgs/development/python-modules/gremlinpython
diff options
context:
space:
mode:
authorRobert T. McGibbon <rmcgibbo@gmail.com>2021-03-19 16:28:11 -0400
committerRobert T. McGibbon <rmcgibbo@gmail.com>2021-03-19 17:00:05 -0400
commita7e42129c2ac0a63282d841935f8839939307754 (patch)
treeceaa52eae52d128fcccdba8c86a4ef0b1c515904 /pkgs/development/python-modules/gremlinpython
parent70ed6f5feefba378f910856edfca6bcee4a1ca83 (diff)
downloadnixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar.gz
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar.bz2
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar.lz
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar.xz
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.tar.zst
nixpkgs-a7e42129c2ac0a63282d841935f8839939307754.zip
python3Packages.gremlinpython: 3.4.8 -> 3.4.10
Diffstat (limited to 'pkgs/development/python-modules/gremlinpython')
-rw-r--r--pkgs/development/python-modules/gremlinpython/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/gremlinpython/default.nix b/pkgs/development/python-modules/gremlinpython/default.nix
index 97d169283b2..59da8f173d9 100644
--- a/pkgs/development/python-modules/gremlinpython/default.nix
+++ b/pkgs/development/python-modules/gremlinpython/default.nix
@@ -1,22 +1,23 @@
-{ stdenv, lib, buildPythonPackage, fetchFromGitHub, python, pythonOlder
-, pytestCheckHook, pyhamcrest, pytestrunner, pytest
+{ lib, buildPythonPackage, fetchFromGitHub
+, pytestCheckHook, pyhamcrest, pytestrunner
 , six, isodate, tornado, aenum, radish-bdd, mock
 }:
 
 buildPythonPackage rec {
   pname = "gremlinpython";
-  version = "3.4.8";
+  version = "3.4.10";
 
   # pypi tarball doesn't include tests
   src = fetchFromGitHub {
     owner = "apache";
     repo = "tinkerpop";
     rev = version;
-    sha256 = "0kcyhfxz7z4f8i64gig8q1q9dhy24cprbh63vwsdiwryg74q4chl";
+    sha256 = "0i9lkrwbsmpx1h9480vf97pibm2v37sgw2qm2r1c0i8gg5bcmhj3";
   };
   sourceRoot = "source/gremlin-python/src/main/jython";
   postPatch = ''
     substituteInPlace setup.py \
+      --replace 'aenum>=1.4.5,<3.0.0' 'aenum' \
       --replace 'tornado>=4.4.1,<6.0' 'tornado' \
       --replace 'PyHamcrest>=1.9.0,<2.0.0' 'PyHamcrest' \
       --replace 'radish-bdd==0.8.6' 'radish-bdd' \