Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / actdiag / default.nix
blob070bcd72ed4abc87e361519a12cc19cffe742151
1 { lib
2 , blockdiag
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pynose
6 , pytestCheckHook
7 , pythonOlder
8 , setuptools
9 }:
11 buildPythonPackage rec {
12   pname = "actdiag";
13   version = "3.0.0";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "blockdiag";
20     repo = "actdiag";
21     rev = "refs/tags/${version}";
22     hash = "sha256-WmprkHOgvlsOIg8H77P7fzEqxGnj6xaL7Df7urRkg3o=";
23   };
25   build-system = [
26     setuptools
27   ];
29   propagatedBuildInputs = [
30     blockdiag
31   ];
33   nativeCheckInputs = [
34     pynose
35     pytestCheckHook
36   ];
38   pytestFlagsArray = [
39     "src/actdiag/tests/"
40   ];
42   disabledTests = [
43     # AttributeError: 'TestRstDirectives' object has no attribute 'assertRegexpMatches'
44     "svg"
45     "noviewbox"
46   ];
48   pythonImportsCheck = [
49     "actdiag"
50   ];
52   meta = with lib; {
53     description = "Generate activity-diagram image from spec-text file (similar to Graphviz)";
54     homepage = "http://blockdiag.com/";
55     changelog = "https://github.com/blockdiag/actdiag/blob/${version}/CHANGES.rst";
56     license = licenses.asl20;
57     maintainers = with maintainers; [ bjornfor ];
58     mainProgram = "actdiag";
59     platforms = platforms.unix;
60   };