Loading pkgs/development/python-modules/bumpfontversion/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/bumpfontversion/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading