Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / queuelib / default.nix
blob71e09ef98ed52c7302507522c9063fd8a038dc06
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "queuelib";
9   version = "1.6.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "4b207267f2642a8699a1f806045c56eb7ad1a85a10c0e249884580d139c2fcd2";
14   };
16   buildInputs = [ pytest ];
18   meta = with lib; {
19     description = "A collection of persistent (disk-based) queues for Python";
20     homepage = "https://github.com/scrapy/queuelib";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ ];
23   };