cc9d8b8cc1
Diff: https://github.com/rogdham/backports.zstd/compare/v1.2.0...v1.3.0 Changelog: https://github.com/rogdham/backports.zstd/blob/v1.3.0/CHANGELOG.md
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
zstd,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "backports-zstd";
|
|
version = "1.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rogdham";
|
|
repo = "backports.zstd";
|
|
tag = "v${version}";
|
|
fetchSubmodules = true;
|
|
postFetch = ''
|
|
rm -r "$out/src/c/zstd"
|
|
'';
|
|
hash = "sha256-AF2Id4U2++RMCFICxz0E3DrgEVgGNsph4sIZ9YC87fE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail 'ROOT_PATH / "src" / "c" / "zstd"' 'Path("${zstd.src}")'
|
|
|
|
# need to preserve $PYTHONPATH when calling sys.executable
|
|
substituteInPlace tests/test/support/script_helper.py \
|
|
--replace-fail "return __cached_interp_requires_environment" "return True"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pypaBuildFlags = [ "--config-setting=--build-option=--system-zstd" ];
|
|
|
|
buildInputs = [ zstd ];
|
|
|
|
pythonImportsCheck = [ "backports.zstd" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
enabledTestPaths = [ "tests" ];
|
|
|
|
disabledTestPaths = [
|
|
# sandbox doesn't allow setting SUID bit
|
|
"tests/test/test_tarfile.py::TestExtractionFilters::test_modes"
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/rogdham/backports.zstd/blob/${src.tag}/CHANGELOG.md";
|
|
description = "Backport of compression.zstd";
|
|
homepage = "https://github.com/rogdham/backports.zstd";
|
|
license = lib.licenses.psfl;
|
|
maintainers = [ lib.maintainers.dotlambda ];
|
|
};
|
|
}
|