2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, pkgconfig, fetchPypi, buildPythonPackage
|
2020-11-19 20:09:23 +00:00
|
|
|
, buildPackages
|
2018-11-01 09:41:28 +00:00
|
|
|
, zstd, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zstd";
|
2020-12-23 21:22:53 +00:00
|
|
|
version = "1.4.8.1";
|
2019-01-10 13:43:34 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-23 21:22:53 +00:00
|
|
|
sha256 = "b62b21eb850abd6b8c0046bfc1c5c773c873eeb94f1904ef1ff304e98b62b80e";
|
2018-11-01 09:41:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
2020-11-19 20:09:23 +00:00
|
|
|
--replace "/usr/bin/pkg-config" "${buildPackages.pkgconfig}/bin/${buildPackages.pkgconfig.targetPrefix}pkg-config"
|
2018-11-01 09:41:28 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
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;
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-01 09:41:28 +00:00
|
|
|
description = "Simple python bindings to Yann Collet ZSTD compression library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/sergey-dryabzhinsky/python-zstd";
|
2018-11-01 09:41:28 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
eadwu
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|