mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 12:34:15 +00:00
Merge pull request #131012 from urlordjames/leb128
pythonPackages.leb128: init at 1.0.4
This commit is contained in:
commit
f69fc496c6
24
pkgs/development/python-modules/leb128/default.nix
Normal file
24
pkgs/development/python-modules/leb128/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3981,6 +3981,8 @@ in {
|
|||||||
|
|
||||||
leather = callPackage ../development/python-modules/leather { };
|
leather = callPackage ../development/python-modules/leather { };
|
||||||
|
|
||||||
|
leb128 = callPackage ../development/python-modules/leb128 { };
|
||||||
|
|
||||||
ledger_agent = callPackage ../development/python-modules/ledger_agent { };
|
ledger_agent = callPackage ../development/python-modules/ledger_agent { };
|
||||||
|
|
||||||
ledgerblue = callPackage ../development/python-modules/ledgerblue { };
|
ledgerblue = callPackage ../development/python-modules/ledgerblue { };
|
||||||
|
Loading…
Reference in New Issue
Block a user