about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/actdiag/default.nix
blob: ca47018f56f4d96fde663af50bb2ba13b15f03a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, buildPythonPackage, fetchPypi
, nose, docutils, blockdiag, reportlab }:

buildPythonPackage rec {
  pname = "actdiag";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g51v9dmdq18z33v332f1f0cmb3hqgaga5minj0mc2sglark1s7h";
  };

  propagatedBuildInputs = [ blockdiag docutils ];

  checkInputs = [ nose reportlab ];

  meta = with lib; {
    description = "Generate activity-diagram image from spec-text file (similar to Graphviz)";
    homepage = "http://blockdiag.com/";
    license = licenses.asl20;
    platforms = platforms.unix;
    maintainers = with maintainers; [ bjornfor SuperSandro2000 ];
  };
}