Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonApplication 3, fetchPypi 4}: 5buildPythonApplication rec { 6 version = "0.0.42"; 7 pname = "dazel"; 8 9 src = fetchPypi { 10 inherit pname version; 11 hash = "sha256-JE7+GS7DpuFoC2LK3dvYvjtOdzRxFMHzgZRfvrGBDtQ="; 12 }; 13 14 meta = { 15 homepage = "https://github.com/nadirizr/dazel"; 16 description = "Run Google's bazel inside a docker container via a seamless proxy."; 17 license = lib.licenses.mit; 18 maintainers = with lib.maintainers; [ 19 malt3 20 ]; 21 }; 22}