The old hash was invalid because of a problem with line ending
normalization in the zstd module:
$ file /nix/store/3v178rjmmyxlb5s9bn0nvq5xzcixlali-source/src/c/zstd/build/VS2008/fullbench/fullbench.vcproj /nix/store/qagxczby82d2pvwsv9nancayx2ywfr51-source/src/c/zstd/build/VS2008/fullbench/fullbench.vcproj
/nix/store/3v178rjmmyxlb5s9bn0nvq5xzcixlali-source/src/c/zstd/build/VS2008/fullbench/fullbench.vcproj: XML 1.0 document, ASCII text
/nix/store/qagxczby82d2pvwsv9nancayx2ywfr51-source/src/c/zstd/build/VS2008/fullbench/fullbench.vcproj: XML 1.0 document, ASCII text, with CRLF line terminators
We don't need that module so let's remove it from `src`.
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.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rogdham";
|
|
repo = "backports.zstd";
|
|
tag = "v${version}";
|
|
fetchSubmodules = true;
|
|
postFetch = ''
|
|
rm -r "$out/src/c/zstd"
|
|
'';
|
|
hash = "sha256-5t5ET8b65v4ArV9zrmu+kDXLG3QQRpMMZPSG+RRaCLk=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|