python3Packages.python-lz4: 3.1.3 -> 3.1.10

This commit is contained in:
Jonathan Ringer 2021-11-25 14:46:58 -08:00
parent af2a1ca6e3
commit 6d0c13124d
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "python-lz4";
version = "3.1.3";
version = "3.1.10";
# get full repository inorder to run tests
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "009c4rbyj4cjb8fznccfpr5wrzdmi56wq990yjh22n0z2qqylmkf";
rev = version;
sha256 = "0a4gic8xh3simkk5k8302rxwf765pr6y63k3js79mkl983vpxcim";
};
nativeBuildInputs = [ setuptools-scm pkgconfig pytest-runner ];