a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
24 lines
675 B
Nix
24 lines
675 B
Nix
{ buildPythonPackage, fetchFromGitHub, pytestCheckHook, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "leb128";
|
|
version = "1.0.4";
|
|
|
|
# fetchPypi doesn't include files required for tests
|
|
src = fetchFromGitHub {
|
|
owner = "mohanson";
|
|
repo = "leb128";
|
|
rev = "v${version}";
|
|
sha256 = "040l6fxyzqal841kirf783kk1840gcy1gjd374jfr46v96qc8scm";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
pythonImportsCheck = [ "leb128" ];
|
|
|
|
meta = with lib; {
|
|
description = "A utility to encode and decode Little Endian Base 128";
|
|
homepage = "https://github.com/mohanson/leb128";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ urlordjames ];
|
|
};
|
|
}
|