python313Packages.zlib-wrapper: init at 0.1.3

Wrapper around zlib with custom header crc32

https://pypi.org/project/zlib_wrapper/
This commit is contained in:
Fabian Affolter
2025-04-06 10:29:34 +02:00
parent af3fb0be19
commit f8dfc0ff8a
@@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "zlib-wrapper";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
pname = "zlib_wrapper";
inherit version;
hash = "sha256-Yxqc7fSDdnAPlGLzTbgcEQxiTKJDSJmPgm0eV62JiGQ=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "zlib_wrapper" ];
meta = {
description = "Wrapper around zlib with custom header crc32";
homepage = "https://pypi.org/project/zlib_wrapper/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}