about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sphinxcontrib-seqdiag/default.nix
blob: c7407300d3131a7a8db4d59af581abd3b5bf9fb3 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, sphinx
, blockdiag
, seqdiag
}:

buildPythonPackage rec {
  pname = "sphinxcontrib-seqdiag";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-THJ1ra/W2X/lQaDjGbL27VMn0lWPJApwgKMrPhL0JY0=";
  };

  propagatedBuildInputs = [ sphinx blockdiag seqdiag ];

  pythonImportsCheck = [ "sphinxcontrib.seqdiag" ];

  meta = with lib; {
    description = "Sphinx seqdiag extension";
    homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag";
    maintainers = with maintainers; [ davidtwco ];
    license = licenses.bsd2;
  };
}