mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.py4j: Init at 0.10.6.
This commit is contained in:
parent
5693c5da8e
commit
4322f2b8c8
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/py4j/default.nix
Normal file
22
pkgs/development/python-modules/py4j/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue