Add deps needed for work

This commit is contained in:
Greg Hellings
2025-01-30 21:36:19 -06:00
parent d1b416c9f6
commit a1872317a4
3 changed files with 12 additions and 7 deletions
+3 -1
View File
@@ -10,7 +10,9 @@ let
bruno-cli bruno-cli
cargo cargo
gh-copilot gh-copilot
mariadb gnumake
libcap.dev
libmysqlclient.dev
nix-eval-jobs nix-eval-jobs
nix-fast-build nix-fast-build
nix-output-monitor nix-output-monitor
+2
View File
@@ -4,6 +4,7 @@ let
myPackages = myPackages =
pypackages: with pypackages; [ pypackages: with pypackages; [
black black
build
dateutil dateutil
ipython ipython
mypy mypy
@@ -11,6 +12,7 @@ let
pyyaml pyyaml
responses responses
ruamel-yaml ruamel-yaml
setuptools
tox tox
typing-extensions typing-extensions
virtualenv virtualenv
+7 -6
View File
@@ -6,8 +6,6 @@
installShellFiles, installShellFiles,
}: }:
with python3.pkgs;
let let
runtimeDeps = runtimeDeps =
@@ -15,8 +13,11 @@ let
with ps; with ps;
[ [
certifi certifi
pysocks
setuptools setuptools
pip (pip.overridePythonAttrs {
dependencies = [ ps.pysocks ];
})
virtualenv virtualenv
virtualenv-clone virtualenv-clone
] ]
@@ -25,7 +26,7 @@ let
pythonEnv = python3.withPackages runtimeDeps; pythonEnv = python3.withPackages runtimeDeps;
in in
buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "pipenv"; pname = "pipenv";
version = "2023.11.15"; version = "2023.11.15";
format = "pyproject"; format = "pyproject";
@@ -39,7 +40,7 @@ buildPythonApplication rec {
env.LC_ALL = "en_US.UTF-8"; env.LC_ALL = "en_US.UTF-8";
nativeBuildInputs = [ nativeBuildInputs = with python3.pkgs; [
installShellFiles installShellFiles
setuptools setuptools
wheel wheel
@@ -60,7 +61,7 @@ buildPythonApplication rec {
export HOME="$TMPDIR" export HOME="$TMPDIR"
''; '';
nativeCheckInputs = [ nativeCheckInputs = with python3.pkgs; [
mock mock
pytestCheckHook pytestCheckHook
pytest-xdist pytest-xdist