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

30 lines
561 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
2018-02-15 21:17:40 +03:00
buildPythonPackage rec {
pname = "JPype1";
2019-12-19 22:31:03 +03:00
version = "0.7.1";
2018-02-15 21:17:40 +03:00
src = fetchPypi {
inherit pname version;
2019-12-19 22:31:03 +03:00
sha256 = "c16d01cde9c2c955d76d45675e64b06c3255784d49cea4147024e99a01fbbb18";
2018-02-15 21:17:40 +03:00
};
checkInputs = [
pytest
];
2018-02-15 21:17:40 +03:00
# required openjdk (easy) but then there were some class path issues
# when running the tests
2018-07-26 13:32:07 +03:00
doCheck = false;
2018-02-15 21:17:40 +03:00
meta = with lib; {
homepage = https://github.com/originell/jpype/;
license = licenses.asl20;
description = "A Python to Java bridge";
2018-02-15 21:17:40 +03:00
};
}