2018-08-08 12:27:47 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2019-08-01 11:41:10 -07:00
|
|
|
, future
|
|
|
|
, isPy3k
|
|
|
|
, pkgconfig
|
2018-08-08 12:27:47 -07:00
|
|
|
, psutil
|
2019-08-01 11:41:10 -07:00
|
|
|
, pytest
|
|
|
|
, pytestcov
|
|
|
|
, pytestrunner
|
2018-08-08 12:27:47 -07:00
|
|
|
, setuptools_scm
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-lz4";
|
2021-03-24 10:41:55 -07:00
|
|
|
version = "3.1.3";
|
2018-08-08 12:27:47 -07:00
|
|
|
|
|
|
|
# get full repository inorder to run tests
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-24 10:41:55 -07:00
|
|
|
sha256 = "009c4rbyj4cjb8fznccfpr5wrzdmi56wq990yjh22n0z2qqylmkf";
|
2018-08-08 12:27:47 -07:00
|
|
|
};
|
|
|
|
|
2020-05-29 11:42:11 -07:00
|
|
|
nativeBuildInputs = [ setuptools_scm pkgconfig pytestrunner ];
|
2019-08-01 11:41:10 -07:00
|
|
|
checkInputs = [ pytest pytestcov psutil ];
|
2018-08-08 12:27:47 -07:00
|
|
|
propagatedBuildInputs = lib.optionals (!isPy3k) [ future ];
|
|
|
|
|
|
|
|
# give a hint to setuptools_scm on package version
|
|
|
|
preBuild = ''
|
|
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION="v${version}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "LZ4 Bindings for Python";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/python-lz4/python-lz4";
|
2018-12-05 18:25:22 -08:00
|
|
|
license = lib.licenses.bsd3;
|
2018-08-08 12:27:47 -07:00
|
|
|
maintainers = with lib.maintainers; [ costrouc ];
|
|
|
|
};
|
|
|
|
}
|