Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 26 lines 510 B view raw
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 hash = "sha256-KFUWIJbPAjBRCJCzVDeeocD/GdEF0xR9NJ0kM7siKwg="; 16 }; 17 18 buildInputs = [ pytest ]; 19 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 }; 26}