Commit 1b3f672a authored by jopejoe1's avatar jopejoe1
Browse files

python3Packages.bumpfontversion: init at 0.4.0

parent dc997637
Loading
Loading
Loading
Loading
+53 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonRelaxDepsHook,
  poetry-core,
  fonttools,
  openstep-plist,
  ufolib2,
  glyphslib,
  bump2version,
}:

buildPythonPackage rec {
  pname = "bumpfontversion";
  version = "0.4.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "simoncozens";
    repo = "bumpfontversion";
    rev = "refs/tags/v${version}";
    hash = "sha256-qcKZGv/KeeSRBq4SdnuZlurp0CUs40iEQjw9/1LltUg=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail 'poetry>=' 'poetry-core>=' \
      --replace-fail 'poetry.masonry.api' 'poetry.core.masonry.api'
  '';

  nativeBuildInputs = [ pythonRelaxDepsHook ];

  pythonRelaxDeps = [ "glyphslib" ];

  build-system = [ poetry-core ];

  dependencies = [
    fonttools
    openstep-plist
    ufolib2
    glyphslib
    bump2version
  ];

  meta = {
    description = "Version-bump your font sources";
    homepage = "https://github.com/simoncozens/bumpfontversion";
    license = lib.licenses.asl20;
    mainProgram = "bumpfontversion";
    maintainers = with lib.maintainers; [ jopejoe1 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1897,6 +1897,8 @@ self: super: with self; {
  bump2version = callPackage ../development/python-modules/bump2version { };
  bumpfontversion = callPackage ../development/python-modules/bumpfontversion { };
  bumps = callPackage ../development/python-modules/bumps { };
  bunch = callPackage ../development/python-modules/bunch { };