summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-22 11:43:10 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:49 +0200
commit751c9328e6d2d3596f7b51e91a5b14ba6caefa71 (patch)
treeb1b10a42fbaac193488ce4846bead7abf00f5700 /pkgs
parent8216e6fa0d8af4ce63be5ab3628c015891648151 (diff)
downloadnixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar.gz
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar.bz2
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar.lz
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar.xz
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.tar.zst
nixlib-751c9328e6d2d3596f7b51e91a5b14ba6caefa71.zip
python.pkgs.py4j: 0.10.6 -> 0.10.7
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/py4j/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/py4j/default.nix b/pkgs/development/python-modules/py4j/default.nix
index 9cf9828635fb..48a14399e898 100644
--- a/pkgs/development/python-modules/py4j/default.nix
+++ b/pkgs/development/python-modules/py4j/default.nix
@@ -3,15 +3,16 @@
 buildPythonPackage rec {
   pname = "py4j";
 
-  version = "0.10.6";
+  version = "0.10.7";
 
   src = fetchPypi {
     inherit pname version;
     extension= "zip";
-    sha256 = "10shayghsmcdr03w12a7sdm6vsxpjm8alw3ym3mr1hki45yarryk";
+    sha256 = "721189616b3a7d28212dfb2e7c6a1dd5147b03105f1fc37ff2432acd0e863fa5";
   };
 
-  propagatedBuildInputs = [  ];
+  # No tests in archive
+  doCheck = false;
 
   meta = with stdenv.lib; {
     description = "Py4J enables Python programs running in a Python interpreter to dynamically access Java objects in a Java Virtual Machine. Methods are called as if the Java objects resided in the Python interpreter and Java collections can be accessed through standard Python collection methods. Py4J also enables Java programs to call back Python objects.";