linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / queuelib / default.nix
blob3814663c04452ea094aeaeb13da8027ae7edbf0e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "queuelib";
9   version = "1.5.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "42b413295551bdc24ed9376c1a2cd7d0b1b0fa4746b77b27ca2b797a276a1a17";
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; [ drewkett ];
23   };