about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/queuelib/default.nix
blob: 7534974237a9b98c0137a387e724c54322a3e528 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "queuelib";
  version = "1.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "631d067c9be57e395c382d680d3653ca1452cd29e8da25c5e8d94b5c0c528c31";
  };

  buildInputs = [ pytest ];

  meta = with lib; {
    description = "A collection of persistent (disk-based) queues for Python";
    homepage = "https://github.com/scrapy/queuelib";
    license = licenses.bsd3;
    maintainers = with maintainers; [ drewkett ];
  };

}