14 buildPythonPackage rec {
18 # get full repository inorder to run tests
19 src = fetchFromGitHub {
23 sha256 = "02cadqfdmw4vc94px18dh4hcybpsa2lr6jz6j5phwc0jjaavh3wr";
26 nativeBuildInputs = [ setuptools_scm pkgconfig pytestrunner ];
27 checkInputs = [ pytest pytestcov psutil ];
28 propagatedBuildInputs = lib.optionals (!isPy3k) [ future ];
30 # give a hint to setuptools_scm on package version
32 export SETUPTOOLS_SCM_PRETEND_VERSION="v${version}"
36 description = "LZ4 Bindings for Python";
37 homepage = "https://github.com/python-lz4/python-lz4";
38 license = lib.licenses.bsd3;
39 maintainers = with lib.maintainers; [ costrouc ];