Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.leb128: 1.0.7 -> 1.0.8

https://github.com/mohanson/leb128/releases/tag/v1.0.8

+3 -2
+3 -2
pkgs/development/python-modules/leb128/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "leb128"; 11 - version = "1.0.7"; 12 pyproject = true; 13 14 # fetchPypi doesn't include files required for tests ··· 16 owner = "mohanson"; 17 repo = "leb128"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-17C0Eic8T2PFkuIGExcrfb3b1HldaSBAPSh5TtRBUuU="; 20 }; 21 22 build-system = [ setuptools ]; ··· 26 pythonImportsCheck = [ "leb128" ]; 27 28 meta = with lib; { 29 description = "Utility to encode and decode Little Endian Base 128"; 30 homepage = "https://github.com/mohanson/leb128"; 31 license = licenses.mit;
··· 8 9 buildPythonPackage rec { 10 pname = "leb128"; 11 + version = "1.0.8"; 12 pyproject = true; 13 14 # fetchPypi doesn't include files required for tests ··· 16 owner = "mohanson"; 17 repo = "leb128"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-7ZjDqxGUANk3FfB3HPTc5CB5YcIi2ee0igXWAYXaZ88="; 20 }; 21 22 build-system = [ setuptools ]; ··· 26 pythonImportsCheck = [ "leb128" ]; 27 28 meta = with lib; { 29 + changelog = "https://github.com/mohanson/leb128/releases/tag/v${version}"; 30 description = "Utility to encode and decode Little Endian Base 128"; 31 homepage = "https://github.com/mohanson/leb128"; 32 license = licenses.mit;