Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "asterisk-mbox"; 8 version = "0.5.0"; 9 10 src = fetchPypi { 11 pname = "asterisk_mbox"; 12 inherit version; 13 sha256 = "0624f9ab85ce9c4d43655f8653e8539fa10c81b60fd7b94b1a15dce306c20888"; 14 }; 15 16 # no tests implemented 17 doCheck = false; 18 19 pythonImportsCheck = [ "asterisk_mbox" ]; 20 21 meta = with lib; { 22 description = "The client side of a client/server to interact with Asterisk voicemail mailboxes"; 23 homepage = "https://github.com/PhracturedBlue/asterisk_mbox"; 24 license = licenses.gpl3Only; 25 maintainers = with maintainers; [ dotlambda ]; 26 }; 27}