Files
nixpkgs/pkgs/development/python-modules/zlib-wrapper/default.nix
Fabian Affolter f8dfc0ff8a python313Packages.zlib-wrapper: init at 0.1.3
Wrapper around zlib with custom header crc32

https://pypi.org/project/zlib_wrapper/
2025-04-06 10:29:34 +02:00

33 lines
641 B
Nix

{
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 ];
};
}