pythonPackages.py4j: Init at 0.10.6.

This commit is contained in:
Shea Levy 2018-03-08 10:12:24 -05:00
parent 5693c5da8e
commit 4322f2b8c8
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ buildPythonPackage, fetchPypi, stdenv }:
buildPythonPackage rec {
pname = "py4j";
version = "0.10.6";
src = fetchPypi {
inherit pname version;
extension= "zip";
sha256 = "10shayghsmcdr03w12a7sdm6vsxpjm8alw3ym3mr1hki45yarryk";
};
propagatedBuildInputs = [ ];
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.";
homepage = https://www.py4j.org/;
license = licenses.bsd3;
maintainers = [ maintainers.shlevy ];
};
}

View file

@ -1570,6 +1570,8 @@ in {
proboscis = callPackage ../development/python-modules/proboscis {};
py4j = callPackage ../development/python-modules/py4j { };
pyechonest = self.buildPythonPackage rec {
name = "pyechonest-8.0.2";