summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/da/dazel/package.nix
blob: 0ee095906d00601070efbc154d23fd8790f99cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  python3Packages,
  fetchPypi,
}:
python3Packages.buildPythonApplication (finalAttrs: {
  pname = "dazel";
  version = "0.0.43";
  pyproject = true;

  build-system = [
    python3Packages.setuptools
  ];

  src = fetchPypi {
    inherit (finalAttrs) pname version;
    hash = "sha256-2enQRKg4CAPGHte02io+EfiW9AmuP3Qi41vNQeChg+8=";
  };

  meta = {
    homepage = "https://github.com/nadirizr/dazel";
    description = "Run Google's bazel inside a docker container via a seamless proxy";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      malt3
    ];
  };
})