depot/third_party/nixpkgs/pkgs/development/python-modules/pyjnius/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

36 lines
761 B
Nix

{
lib,
buildPythonPackage,
cython,
fetchPypi,
jdk,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyjnius";
version = "1.6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-0qfs5u15vx1/l6T21hMC2fHXZSGCo+TIpp267zE5bmA=";
};
nativeBuildInputs = [
jdk
cython
];
pythonImportsCheck = [ "jnius" ];
meta = with lib; {
description = "Python module to access Java classes as Python classes using the Java Native Interface (JNI)";
homepage = "https://github.com/kivy/pyjnius";
changelog = "https://github.com/kivy/pyjnius/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ifurther ];
};
}