64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
zstd-c,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "pyzstd";
|
|
version = "0.16.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rogdham";
|
|
repo = "pyzstd";
|
|
tag = version;
|
|
hash = "sha256-Az+0m1XUFxExBZK8bcjK54Zt2d5ZlAKRMZRdr7rPcss=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# pyzst specifies setuptools<74 because 74+ drops `distutils.msvc9compiler`,
|
|
# required for Python 3.9 under Windows
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail '"setuptools>=64,<74"' '"setuptools"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
buildInputs = [
|
|
zstd-c
|
|
];
|
|
|
|
pypaBuildFlags = [
|
|
"--config-setting=--global-option=--dynamic-link-zstd"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pyzstd"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python bindings to Zstandard (zstd) compression library";
|
|
homepage = "https://pyzstd.readthedocs.io";
|
|
changelog = "https://github.com/Rogdham/pyzstd/blob/${version}/CHANGELOG.md";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
MattSturgeon
|
|
pitkling
|
|
PopeRigby
|
|
];
|
|
};
|
|
}
|