blob: e430ecc567b1bc93ba825f4aeb5327e0d6fe2c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
pkg-config,
fetchPypi,
buildPythonPackage,
buildPackages,
zstd,
pytest,
}:
buildPythonPackage rec {
pname = "zstd";
version = "1.5.7.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bYaExpAJvknhsY7CUaXrDX4k+TYkmQqKEkodpmqS/Io=";
};
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 = {
description = "Simple python bindings to Yann Collet ZSTD compression library";
homepage = "https://github.com/sergey-dryabzhinsky/python-zstd";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ eadwu ];
};
}
|