blob: 4d7747095273dd62e3707975c52d11bb94aa332b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
blockdiag,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "seqdiag";
version = "3.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "blockdiag";
repo = "seqdiag";
tag = version;
hash = "sha256-Dh9JMx50Nexi0q39rYr9MpkKmQRAfT7lzsNOXoTuphg=";
};
build-system = [ setuptools ];
dependencies = [ blockdiag ];
patches = [ ./fix_test_generate.patch ];
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "src/seqdiag/tests/" ];
pythonImportsCheck = [ "seqdiag" ];
meta = {
description = "Generate sequence-diagram image from spec-text file (similar to Graphviz)";
homepage = "http://blockdiag.com/";
changelog = "https://github.com/blockdiag/seqdiag/blob/${version}/CHANGES.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bjornfor ];
mainProgram = "seqdiag";
platforms = lib.platforms.unix;
};
}
|