evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / py4j / default.nix
blob9433dbdf37e3ba85b4cd397001b284aaba1cc140
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "py4j";
10   version = "0.10.9.7";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-C25TFbs62lz2KsZR0Qe7LrwC3vPe6dlUjjuqxkTqjbs=";
16   };
18   # No tests in archive
19   doCheck = false;
21   meta = with lib; {
22     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";
23     homepage = "https://www.py4j.org/";
24     sourceProvenance = with sourceTypes; [
25       fromSource
26       binaryBytecode
27     ];
28     license = licenses.bsd3;
29     maintainers = [ maintainers.shlevy ];
30   };