nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.11 28 lines 608 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, sphinx 5, actdiag 6, blockdiag 7}: 8 9buildPythonPackage rec { 10 pname = "sphinxcontrib-actdiag"; 11 version = "2.0.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-TtuFZOLkig4MULLndDQlrTTx8RiGw34MsjmXoPladMY="; 16 }; 17 18 propagatedBuildInputs = [ sphinx actdiag blockdiag ]; 19 20 pythonImportsCheck = [ "sphinxcontrib.actdiag" ]; 21 22 meta = with lib; { 23 description = "Sphinx actdiag extension"; 24 homepage = "https://github.com/blockdiag/sphinxcontrib-actdiag"; 25 maintainers = with maintainers; [ davidtwco ]; 26 license = licenses.bsd2; 27 }; 28}