2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi
|
2020-11-29 02:36:00 +00:00
|
|
|
, nose, docutils, blockdiag, reportlab }:
|
2017-07-19 09:59:47 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "actdiag";
|
2020-11-29 02:36:00 +00:00
|
|
|
version = "2.0.0";
|
2017-07-19 09:59:47 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 02:36:00 +00:00
|
|
|
sha256 = "0g51v9dmdq18z33v332f1f0cmb3hqgaga5minj0mc2sglark1s7h";
|
2017-07-19 09:59:47 +01:00
|
|
|
};
|
|
|
|
|
2020-11-29 02:36:00 +00:00
|
|
|
propagatedBuildInputs = [ blockdiag docutils ];
|
2017-07-19 09:59:47 +01:00
|
|
|
|
2020-11-29 02:36:00 +00:00
|
|
|
checkInputs = [ nose reportlab ];
|
2017-07-19 09:59:47 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-19 09:59:47 +01:00
|
|
|
description = "Generate activity-diagram image from spec-text file (similar to Graphviz)";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://blockdiag.com/";
|
2017-07-19 09:59:47 +01:00
|
|
|
license = licenses.asl20;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2020-11-29 02:36:00 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor SuperSandro2000 ];
|
2017-07-19 09:59:47 +01:00
|
|
|
};
|
|
|
|
}
|