Merge pull request #131012 from urlordjames/leb128

pythonPackages.leb128: init at 1.0.4

authored by Sandro and committed by GitHub f69fc496 82701b29

+26
+24
pkgs/development/python-modules/leb128/default.nix
··· 1 + { buildPythonPackage, fetchFromGitHub, pytestCheckHook, lib }: 2 + 3 + buildPythonPackage rec { 4 + pname = "leb128"; 5 + version = "1.0.4"; 6 + 7 + # fetchPypi doesn't include files required for tests 8 + src = fetchFromGitHub { 9 + owner = "mohanson"; 10 + repo = "leb128"; 11 + rev = "v${version}"; 12 + sha256 = "040l6fxyzqal841kirf783kk1840gcy1gjd374jfr46v96qc8scm"; 13 + }; 14 + 15 + checkInputs = [ pytestCheckHook ]; 16 + pythonImportsCheck = [ "leb128" ]; 17 + 18 + meta = with lib; { 19 + description = "A utility to encode and decode Little Endian Base 128"; 20 + homepage = "https://github.com/mohanson/leb128"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ urlordjames ]; 23 + }; 24 + }
+2
pkgs/top-level/python-packages.nix
··· 3981 3981 3982 3982 leather = callPackage ../development/python-modules/leather { }; 3983 3983 3984 + leb128 = callPackage ../development/python-modules/leb128 { }; 3985 + 3984 3986 ledger_agent = callPackage ../development/python-modules/ledger_agent { }; 3985 3987 3986 3988 ledgerblue = callPackage ../development/python-modules/ledgerblue { };