saunafs: 4.6.0 -> 4.7.0 (#379649)
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-actdiag / default.nix
blob35eee667daf4ec8e39479905f285d97ae06521cb
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   sphinx,
6   actdiag,
7   blockdiag,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "sphinxcontrib-actdiag";
13   version = "3.0.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-PFXUVP/Due/nwg8q2vAiGZuCVhLTLyAL6KSXqofg+B8=";
21   };
23   propagatedBuildInputs = [
24     actdiag
25     blockdiag
26     sphinx
27   ];
29   pythonImportsCheck = [ "sphinxcontrib.actdiag" ];
31   pythonNamespaces = [ "sphinxcontrib" ];
33   meta = with lib; {
34     description = "Sphinx actdiag extension";
35     homepage = "https://github.com/blockdiag/sphinxcontrib-actdiag";
36     license = licenses.bsd2;
37     maintainers = with maintainers; [ davidtwco ];
38   };