1{ lib 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, blockdiag 6, seqdiag 7}: 8 9buildPythonPackage rec { 10 pname = "sphinxcontrib-seqdiag"; 11 version = "2.0.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-THJ1ra/W2X/lQaDjGbL27VMn0lWPJApwgKMrPhL0JY0="; 16 }; 17 18 propagatedBuildInputs = [ sphinx blockdiag seqdiag ]; 19 20 pythonImportsCheck = [ "sphinxcontrib.seqdiag" ]; 21 22 meta = with lib; { 23 description = "Sphinx seqdiag extension"; 24 homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag"; 25 maintainers = with maintainers; [ davidtwco ]; 26 license = licenses.bsd2; 27 }; 28}