Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 25 lines 564 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, blockdiag 5}: 6 7buildPythonPackage rec { 8 pname = "blockdiagcontrib-cisco"; 9 version = "0.1.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "06iw3q1w4g3lbgcmyz8m93rv0pfnk2gp8k83rs9ir671ym99gwr2"; 14 }; 15 16 buildInputs = [ blockdiag ]; 17 18 meta = with stdenv.lib; { 19 description = "Noderenderer plugin for blockdiag containing Cisco networking symbols"; 20 homepage = "https://bitbucket.org/blockdiag/blockdiag-contrib/"; 21 maintainers = [ maintainers.bjornfor ]; 22 license = licenses.psfl; 23 }; 24 25}