python312Packages.glyphsets 0.6.11 -> 0.6.14 https://github.com/googlefonts/glyphsets/releases attrpath: python312Packages.glyphsets Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/7cafqvldgvh4gif628bpi5srw6k4vikd-packages.json.drv building '/nix/store/7cafqvldgvh4gif628bpi5srw6k4vikd-packages.json.drv'... Going to be running update for following packages: - python3.12-glyphsets-0.6.11 Press Enter key to continue... Running update for: - python3.12-glyphsets-0.6.11: UPDATING ... - python3.12-glyphsets-0.6.11: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/glyphsets/default.nix b/pkgs/development/python-modules/glyphsets/default.nix index c204121565d6..ac1625471011 100644 --- a/pkgs/development/python-modules/glyphsets/default.nix +++ b/pkgs/development/python-modules/glyphsets/default.nix @@ -12,12 +12,12 @@ buildPythonPackage rec { pname = "glyphsets"; - version = "0.6.11"; + version = "0.6.14"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-ACeD9O/kOE2we95gW4ak8504Y+azoqNyMeeVaWmEzak="; + hash = "sha256-lMRgchadgKyfFLw6ZF1sJAKBAK75zmw77L34MW9p7TI="; }; patches = [ No auto update branch exists Old version 0.6.11" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , defcon , fonttools , glyphslib , pytestCheckHook , setuptools , setuptools-scm , unicodedata2 }: buildPythonPackage rec { pname = "glyphsets"; version = "0.6.14"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-lMRgchadgKyfFLw6ZF1sJAKBAK75zmw77L34MW9p7TI="; }; patches = [ # Upstream has a needlessly strict version range for setuptools_scm, our # setuptools-scm is newer. We can't use pythonRelaxDepsHook for this # because it's in setup_requires which means we'll fail the requirement # before pythonRelaxDepsHook can run. ./0001-relax-setuptools-scm-dep.patch ]; propagatedBuildInputs = [ defcon fonttools glyphslib setuptools unicodedata2 ]; nativeBuildInputs = [ setuptools-scm ]; doCheck = true; nativeCheckInputs = [ pytestCheckHook ]; preCheck = '' export PATH="$out/bin:$PATH" ''; meta = with lib; { description = "Google Fonts glyph set metadata"; mainProgram = "glyphsets"; homepage = "https://github.com/googlefonts/glyphsets"; license = licenses.asl20; maintainers = with maintainers; [ danc86 ]; }; }