Add copier and deps

This commit is contained in:
Greg Hellings
2022-10-15 00:30:53 -05:00
parent b9ee9dfbad
commit 8ddad3e1eb
10 changed files with 215 additions and 18 deletions
-4
View File
@@ -5,8 +5,4 @@
enable = true;
nix-direnv.enable = true;
};
home.packages = [
pkgs.xonsh-direnv
];
}
+4 -3
View File
@@ -4,11 +4,11 @@ let
guiImports = if gui then
[ ./gui ] else [];
myPackages = pypackages: with pypackages; [
pkgs.datadog-api-client
pkgs.xonsh-direnv
myPackages = pypackages: with pypackages; with pkgs.my-py-addons; [
black
copier
datadog
datadog-api-client
dateutil
flake8
ipython
@@ -18,6 +18,7 @@ let
tox
typing-extensions
virtualenv
xonsh-direnv
];
myPython = pkgs.python3.withPackages myPackages;