12 python.pkgs.buildPythonApplication rec {
13 version = "1.0.5-unstable-2024-01-17";
14 pname = "nix-visualize";
17 src = fetchFromGitHub {
18 owner = "craigmbooth";
19 repo = "nix-visualize";
20 rev = "5b9beae330ac940df56433d347494505e2038904";
21 hash = "sha256-VgEsR/Odddc7v6oq2tNcVwCYm08PhiqhZJueuEYCR0o=";
25 wrapProgram $out/bin/nix-visualize \
26 --prefix PATH : ${lib.makeBinPath [nix]}
29 nativeBuildInputs = [ setuptools ];
31 propagatedBuildInputs = [
38 pythonImportsCheck = [ "nix_visualize" ];
43 description = "Generate dependency graphs of a given nix package";
44 mainProgram = "nix-visualize";
45 homepage = "https://github.com/craigmbooth/nix-visualize";
46 license = with licenses; [ asl20 ];
47 maintainers = with maintainers; [ henrirosten ];