Config changes

This commit is contained in:
marc
2022-12-04 19:31:30 +01:00
parent 69e1dc2eb4
commit ccaca2cbe1
4 changed files with 32 additions and 45 deletions

View File

@@ -8,7 +8,10 @@
pkgs = nixpkgs.legacyPackages.${system};
projectDependencies = with pkgs; [
python = pkgs.python39;
pythonPackages = pkgs.python39Packages;
projectDependencies = with pythonPackages; [
];
in {
@@ -16,12 +19,19 @@
nativeBuildInputs = [ pkgs.bashInteractive ];
buildInputs = with pkgs; [
# Core python dependencies
python39
python39Packages.pip
python39Packages.virtualenv
python
pythonPackages.pip
pythonPackages.virtualenv
# IDE tools
pythonPackages.isort
nodePackages.pyright
# Development tools
python39Packages.ipython
black
pythonPackages.ipython
pythonPackages.pytest
pythonPackages.setuptools
] ++ projectDependencies;
};
});
}