1{
2 lib,
3 buildPythonApplication,
4 fetchPypi,
5 setuptools,
6}:
7buildPythonApplication rec {
8 pname = "dazel";
9 version = "0.0.43";
10 pyproject = true;
11
12 build-system = [ setuptools ];
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-2enQRKg4CAPGHte02io+EfiW9AmuP3Qi41vNQeChg+8=";
17 };
18
19 meta = {
20 homepage = "https://github.com/nadirizr/dazel";
21 description = "Run Google's bazel inside a docker container via a seamless proxy";
22 license = lib.licenses.mit;
23 maintainers = with lib.maintainers; [
24 malt3
25 ];
26 };
27}