actdiag: new package
Actdiag generates activity-diagram image from spec-text file (similar to Graphviz).
This commit is contained in:
parent
d048685af5
commit
6f48eb5866
@ -395,6 +395,8 @@ let
|
||||
acoustidFingerprinter = callPackage
|
||||
../tools/audio/acoustid-fingerprinter { };
|
||||
|
||||
actdiag = pythonPackages.actdiag;
|
||||
|
||||
aefs = callPackage ../tools/filesystems/aefs { };
|
||||
|
||||
aespipe = callPackage ../tools/security/aespipe { };
|
||||
|
@ -131,6 +131,31 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
||||
|
||||
# packages defined here
|
||||
|
||||
actdiag = buildPythonPackage rec {
|
||||
name = "actdiag-0.4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/a/actdiag/${name}.tar.gz";
|
||||
md5 = "428aaab849f04668fa12388b964a56ea";
|
||||
};
|
||||
|
||||
buildInputs = [ pep8 nose unittest2 docutils ];
|
||||
|
||||
propagatedBuildInputs = [ blockdiag ];
|
||||
|
||||
# One test fails, because of missing simple.diag input file
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Generate activity-diagram image from spec-text file (similar to Graphviz)";
|
||||
homepage = http://blockdiag.com/;
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
afew = buildPythonPackage rec {
|
||||
rev = "6bb3915636aaf86f046a017ffffd9a4ef395e199";
|
||||
name = "afew-1.0_${rev}";
|
||||
|
Loading…
Reference in New Issue
Block a user