1{ lib, buildPythonPackage, fetchPypi 2, nose, docutils, blockdiag, reportlab }: 3 4buildPythonPackage rec { 5 pname = "actdiag"; 6 version = "2.0.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0g51v9dmdq18z33v332f1f0cmb3hqgaga5minj0mc2sglark1s7h"; 11 }; 12 13 propagatedBuildInputs = [ blockdiag docutils ]; 14 15 checkInputs = [ nose reportlab ]; 16 17 meta = with lib; { 18 description = "Generate activity-diagram image from spec-text file (similar to Graphviz)"; 19 homepage = "http://blockdiag.com/"; 20 license = licenses.asl20; 21 platforms = platforms.unix; 22 maintainers = with maintainers; [ bjornfor SuperSandro2000 ]; 23 }; 24}