python3Packages.queuelib: 1.7.0 -> 1.8.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-04-03 23:13:01 +02:00
parent 1834d50fb2
commit 15c7b733b2
@@ -2,24 +2,30 @@
lib,
buildPythonPackage,
fetchPypi,
pytest,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "queuelib";
version = "1.7.0";
format = "setuptools";
version = "1.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KFUWIJbPAjBRCJCzVDeeocD/GdEF0xR9NJ0kM7siKwg=";
hash = "sha256-WCvGVRRIEQCwU5vWcdprNVuHiGnPx32Sxjt1/MnPjic=";
};
buildInputs = [ pytest ];
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "queuelib" ];
meta = with lib; {
description = "Collection of persistent (disk-based) queues for Python";
homepage = "https://github.com/scrapy/queuelib";
changelog = "https://github.com/scrapy/queuelib/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};