1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytest,
6}:
7
8buildPythonPackage rec {
9 pname = "queuelib";
10 version = "1.7.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "sha256-KFUWIJbPAjBRCJCzVDeeocD/GdEF0xR9NJ0kM7siKwg=";
16 };
17
18 buildInputs = [ pytest ];
19
20 meta = with lib; {
21 description = "A collection of persistent (disk-based) queues for Python";
22 homepage = "https://github.com/scrapy/queuelib";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ ];
25 };
26}