nixpkgs/pkgs/development/python-modules/zstd/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

48 lines
1.1 KiB
Nix

{ lib, pkg-config, fetchPypi, buildPythonPackage
, buildPackages
, zstd, pytest }:
buildPythonPackage rec {
pname = "zstd";
version = "1.5.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9ECFjRmIkOX/UX3/MtFejDG7c1BqiW+br20BTv5i9/w=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "/usr/bin/pkg-config" "${buildPackages.pkg-config}/bin/${buildPackages.pkg-config.targetPrefix}pkg-config"
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ zstd ];
setupPyBuildFlags = [
"--external"
"--include-dirs=${zstd}/include"
"--libraries=zstd"
"--library-dirs=${zstd}/lib"
];
# Running tests via setup.py triggers an attempt to recompile with the vendored zstd
ZSTD_EXTERNAL = 1;
VERSION = zstd.version;
PKG_VERSION = version;
nativeCheckInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Simple python bindings to Yann Collet ZSTD compression library";
homepage = "https://github.com/sergey-dryabzhinsky/python-zstd";
license = licenses.bsd2;
maintainers = with maintainers; [
eadwu
];
};
}