diff options
Diffstat (limited to 'pkgs/development/python-modules/leb128/default.nix')
-rw-r--r-- | pkgs/development/python-modules/leb128/default.nix | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/leb128/default.nix b/pkgs/development/python-modules/leb128/default.nix index 4247a4ff7549..4840c3cc678a 100644 --- a/pkgs/development/python-modules/leb128/default.nix +++ b/pkgs/development/python-modules/leb128/default.nix @@ -1,23 +1,33 @@ -{ buildPythonPackage, fetchFromGitHub, pytestCheckHook, lib }: +{ + buildPythonPackage, + fetchFromGitHub, + setuptools, + pytestCheckHook, + lib, +}: buildPythonPackage rec { pname = "leb128"; - version = "1.0.5"; - format = "setuptools"; + version = "1.0.8"; + pyproject = true; # fetchPypi doesn't include files required for tests src = fetchFromGitHub { owner = "mohanson"; repo = "leb128"; rev = "refs/tags/v${version}"; - hash = "sha256-zK14LPziBkvXAMzuPbcg/47caO/5GEYA9txAzCGfpS8="; + hash = "sha256-7ZjDqxGUANk3FfB3HPTc5CB5YcIi2ee0igXWAYXaZ88="; }; + build-system = [ setuptools ]; + nativeCheckInputs = [ pytestCheckHook ]; + pythonImportsCheck = [ "leb128" ]; meta = with lib; { - description = "A utility to encode and decode Little Endian Base 128"; + changelog = "https://github.com/mohanson/leb128/releases/tag/v${version}"; + description = "Utility to encode and decode Little Endian Base 128"; homepage = "https://github.com/mohanson/leb128"; license = licenses.mit; maintainers = with maintainers; [ urlordjames ]; |