Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / actdiag / default.nix
blob92917f6ea9548b9f6df84cd4c2fa3f132884ab3c
1 { lib, buildPythonPackage, fetchPypi
2 , nose, docutils, blockdiag, reportlab }:
4 buildPythonPackage rec {
5   pname = "actdiag";
6   version = "2.0.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0g51v9dmdq18z33v332f1f0cmb3hqgaga5minj0mc2sglark1s7h";
11   };
13   propagatedBuildInputs = [ blockdiag docutils ];
15   checkInputs = [ nose reportlab ];
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   };