nixpkgs/pkgs/development/python-modules/zstd/default.nix
R. RyanTM 2590da0384 python37Packages.zstd: 1.4.1.0 -> 1.4.3.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-zstd/versions
2019-09-28 13:56:01 -07:00

47 lines
1.1 KiB
Nix

{ stdenv, pkgconfig, fetchPypi, buildPythonPackage
, zstd, pytest }:
buildPythonPackage rec {
pname = "zstd";
version = "1.4.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "1h4wvzikar4ryhawm7clh29bvhbpy0ix1rlxhg9x195fpq56vsh7";
};
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
];
};
}