├── .flake8 ├── .github └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── setup.py ├── shell.nix └── src └── nixpkgs_graph ├── __init__.py ├── __main__.py ├── nixpkgs_analysis.py ├── nixpkgs_graph.nix └── nixpkgs_graph.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/setup.py -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/shell.nix -------------------------------------------------------------------------------- /src/nixpkgs_graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nixpkgs_graph/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/src/nixpkgs_graph/__main__.py -------------------------------------------------------------------------------- /src/nixpkgs_graph/nixpkgs_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/src/nixpkgs_graph/nixpkgs_analysis.py -------------------------------------------------------------------------------- /src/nixpkgs_graph/nixpkgs_graph.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/src/nixpkgs_graph/nixpkgs_graph.nix -------------------------------------------------------------------------------- /src/nixpkgs_graph/nixpkgs_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nixpkgs-graph/HEAD/src/nixpkgs_graph/nixpkgs_graph.py --------------------------------------------------------------------------------