python3Packages.indexed-bzip2: init at 1.5.0

This commit is contained in:
mxmlnkn 2023-09-06 19:12:57 +02:00
parent af255c4822
commit 7ec4ed7b6c
3 changed files with 35 additions and 0 deletions
pkgs
development/python-modules/indexed-bzip2
top-level

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "indexed_bzip2";
version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-tKf9odadfQZQYJz//vWYpeB99Z8VLg+hEPvfEHXgdnM=";
};
# has no tests
doCheck = false;
pythonImportsCheck = [ "indexed_bzip2" ];
meta = with lib; {
description = "Python library for parallel decompression and seeking within compressed bzip2 files";
homepage = "https://github.com/mxmlnkn/indexed_bzip2";
license = licenses.mit; # dual MIT and asl20, https://internals.rust-lang.org/t/rationale-of-apache-dual-licensing/8952
maintainers = with lib.maintainers; [ mxmlnkn ];
platforms = platforms.all;
};
}

View file

@ -9354,6 +9354,8 @@ with pkgs;
incron = callPackage ../tools/system/incron { };
indexed-bzip2 = with python3Packages; toPythonApplication indexed-bzip2;
industrializer = callPackage ../applications/audio/industrializer { };
inetutils = callPackage ../tools/networking/inetutils { };

View file

@ -5176,6 +5176,8 @@ self: super: with self; {
incremental = callPackage ../development/python-modules/incremental { };
indexed-bzip2 = callPackage ../development/python-modules/indexed-bzip2 { };
infinity = callPackage ../development/python-modules/infinity { };
inflect = callPackage ../development/python-modules/inflect { };