f3282c8d1e
* treewide: remove unused variables * making ofborg happy
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv, pkgconfig, fetchPypi, buildPythonPackage
|
|
, zstd, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zstd";
|
|
version = "1.4.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01prq9rwz1gh42idnj2162w79dzs8gf3ac8pn12lz347w280kjbk";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "/usr/bin/pkg-config" "${pkgconfig}/bin/pkg-config"
|
|
'';
|
|
|
|
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";
|
|
homepage = https://github.com/sergey-dryabzhinsky/python-zstd;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [
|
|
eadwu
|
|
];
|
|
};
|
|
}
|