2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, pkgconfig, fetchPypi, buildPythonPackage
|
2018-11-01 09:41:28 +00:00
|
|
|
, zstd, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zstd";
|
2020-06-05 18:44:38 +01:00
|
|
|
version = "1.4.5.1";
|
2019-01-10 13:43:34 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-05 18:44:38 +01:00
|
|
|
sha256 = "2a1806d625bd2d8944ead4b3018fc6444a31467fa09935e9c1d4296275f024c6";
|
2018-11-01 09:41:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
2020-04-28 04:56:25 +01:00
|
|
|
--replace "/usr/bin/pkg-config" "${pkgconfig}/bin/${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
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|