nixpkgs/pkgs/development/python-modules/JPype1/default.nix

25 lines
591 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, pytest }:
2018-02-15 21:17:40 +03:00
buildPythonPackage rec {
pname = "JPype1";
2019-10-24 09:47:23 +03:00
version = "0.7.0";
2018-02-15 21:17:40 +03:00
src = fetchPypi {
inherit pname version;
2019-10-24 09:47:23 +03:00
sha256 = "1630439d5b0fb49e2878b43a1a1f074f9d4f46520f525569e14f1f0f9399f871";
2018-02-15 21:17:40 +03:00
};
patches = [ ./set-compiler-language.patch ];
2018-07-26 13:32:07 +03:00
checkInputs = [ pytest ];
# ImportError: Failed to import test module: test.testlucene
doCheck = false;
2018-02-15 21:17:40 +03:00
meta = {
homepage = "https://github.com/originell/jpype/";
license = "License :: OSI Approved :: Apache Software License";
description = "A Python to Java bridge.";
};
}