evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / queuelib / default.nix
blob53105b8ef7495c4f4dd710c343cec33745ca264f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytest,
6 }:
8 buildPythonPackage rec {
9   pname = "queuelib";
10   version = "1.7.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-KFUWIJbPAjBRCJCzVDeeocD/GdEF0xR9NJ0kM7siKwg=";
16   };
18   buildInputs = [ pytest ];
20   meta = with lib; {
21     description = "Collection of persistent (disk-based) queues for Python";
22     homepage = "https://github.com/scrapy/queuelib";
23     license = licenses.bsd3;
24     maintainers = [ ];
25   };