Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 27 lines 502 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, mock 6, twisted 7, tornado 8}: 9 10buildPythonPackage rec { 11 pname = "pika"; 12 version = "1.1.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1gqx9avb9nwgiyw5nz08bf99v9b0hvzr1pmqn9wbhd2hnsj6p9wz"; 17 }; 18 19 checkInputs = [ nose mock twisted tornado ]; 20 21 meta = with stdenv.lib; { 22 description = "Pure-Python implementation of the AMQP 0-9-1 protocol"; 23 homepage = "https://pika.readthedocs.org"; 24 license = licenses.bsd3; 25 }; 26 27}