Merge pull request #232358 from r-ryantm/auto-update/python310Packages.pyjnius

python310Packages.pyjnius: 1.4.2 -> 1.5.0
This commit is contained in:
Weijia Wang 2023-05-17 22:48:13 +03:00 committed by GitHub
commit 72aa4e979d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,30 +1,36 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, cython
, fetchPypi
, jdk
, lib
, six
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyjnius";
version = "1.4.2";
version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/AY3zaSuEo7EqWrDJ9NS6H6oZnZLAdliZyhwvlOana4=";
hash = "sha256-ZjRuJk8eIghrh8XINonqvP7xRQrGR2/YVr6kmLLhNz4=";
};
propagatedBuildInputs = [
six
nativeBuildInputs = [
jdk
cython
];
nativeBuildInputs = [ jdk cython ];
pythonImportsCheck = [ "jnius" ];
pythonImportsCheck = [
"jnius"
];
meta = with lib; {
description = "A 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 ];
};