inflate64: init at 1.0.1

Co-authored-by: ByteSudoer <ByteSudoer@users.noreply.github.com>
Co-authored-by: PopeRigby <poperigby@mailbox.org>
This commit is contained in:
Peter Kling
2025-02-24 10:15:27 +01:00
co-authored by ByteSudoer PopeRigby
parent 5c65fda164
commit 68503547df
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchFromGitea,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "inflate64";
version = "1.0.1";
pyproject = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "miurahr";
repo = "inflate64";
tag = "v${version}";
hash = "sha256-deFx8NMbGLP51CdNvmZ25LQ5FLPBb1PB3QhGhIfTMfc=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"inflate64"
];
meta = {
description = "Compress and decompress with Enhanced Deflate compression algorithm";
homepage = "https://codeberg.org/miurahr/inflate64";
changelog = "https://codeberg.org/miurahr/inflate64/src/tag/v${version}/docs/Changelog.rst#v${version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
pitkling
PopeRigby
];
};
}
+2
View File
@@ -6380,6 +6380,8 @@ self: super: with self; {
infinity = callPackage ../development/python-modules/infinity { };
inflate64 = callPackage ../development/python-modules/inflate64 { };
inflect = callPackage ../development/python-modules/inflect { };
inflection = callPackage ../development/python-modules/inflection { };