fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
39 lines
746 B
Nix
39 lines
746 B
Nix
{
|
|
lib,
|
|
blockdiag,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
seqdiag,
|
|
sphinx,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-seqdiag";
|
|
version = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QH5IeXZz9x2Ujp/6BHFsrB2ZqeyPYW3jdk1C0DNBZXQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
blockdiag
|
|
seqdiag
|
|
sphinx
|
|
];
|
|
|
|
pythonImportsCheck = [ "sphinxcontrib.seqdiag" ];
|
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Sphinx seqdiag extension";
|
|
homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|