python3Packages.{adjustText -> adjusttext}: PEP-503 naming

This commit is contained in:
Samuel Ainsworth
2021-09-13 00:19:41 +00:00
parent ef98e15e38
commit 975d350d51
2 changed files with 4 additions and 4 deletions
@@ -0,0 +1,29 @@
{ buildPythonPackage
, numpy
, matplotlib
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "adjusttext";
version = "0.7.3";
src = fetchFromGitHub {
owner = "Phlya";
repo = pname;
rev = version;
sha256 = "02apaznnnmwmrn342f22dj5dldn56gdl9v5qix07ah6kgp9503yw";
};
propagatedBuildInputs = [ matplotlib numpy ];
pythonImportsCheck = [ "adjustText" ];
meta = with lib; {
description = "Iteratively adjust text position in matplotlib plots to minimize overlaps";
homepage = "https://github.com/Phlya/adjustText";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}