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

Merge pull request #285607 from fabaff/adjusttext-bump

python311Packages.adjusttext: 0.8.1 -> 1.0.4
parents 61a9fd97 f143551a
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -4,27 +4,34 @@
, matplotlib
, numpy
, packaging
, pythonOlder
, scipy
, setuptools
}:

buildPythonPackage rec {
  pname = "adjusttext";
  version = "0.8.1";
  format = "setuptools";
  version = "1.0.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "Phlya";
    repo = pname;
    rev = "refs/tags/${version}";
    repo = "adjusttext";
    rev = "refs/tags/v${version}";
    hash = "sha256-Lhl6ykx5ynf+pBub5tBUaALm1w/88jbuSXPigE216NY=";
  };

  nativeBuildInputs = [
    packaging
    setuptools
  ];

  propagatedBuildInputs = [
    matplotlib
    numpy
    scipy
  ];

  # Project has no tests
@@ -37,6 +44,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Iteratively adjust text position in matplotlib plots to minimize overlaps";
    homepage = "https://github.com/Phlya/adjustText";
    changelog = "https://github.com/Phlya/adjustText/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ samuela ];
  };