9 buildPythonPackage rec {
14 # fetchPypi doesn't include files required for tests
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-7ZjDqxGUANk3FfB3HPTc5CB5YcIi2ee0igXWAYXaZ88=";
22 build-system = [ setuptools ];
24 nativeCheckInputs = [ pytestCheckHook ];
26 pythonImportsCheck = [ "leb128" ];
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;
33 maintainers = with maintainers; [ urlordjames ];