depot/third_party/nixpkgs/pkgs/development/python-modules/actdiag/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
649 B
Nix

{ lib, 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 ];
};
}