Unverified Commit a98b9e25 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.pyjnius: add changelog to meta

parent ed3e3d8a
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
{ buildPythonPackage
{ lib
, buildPythonPackage
, cython
, fetchPypi
, jdk
, lib
, six
}:

@@ -14,17 +14,24 @@ buildPythonPackage rec {
    inherit pname version;
    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 ];
  };