Skip to content

Commit

Permalink
Merge pull request #51 from DataChefHQ/fix/missing-dev-packages-poetry
Browse files Browse the repository at this point in the history
fix: add missing dev packages with poetry.
  • Loading branch information
shahinism authored Oct 2, 2024
2 parents 8a41359 + 65b3c11 commit 88fbed9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 193 deletions.
193 changes: 0 additions & 193 deletions temp/test/devenv.lock

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{% extends pathjoin("includes", "base.nix.jinja") %}

{% block variables %}
let
python-packages = p: with p; [ pip python-lsp-server epc black ];
in
{% endblock %}

{% block languages %}
python = {
enable = true;
Expand All @@ -24,6 +30,13 @@ black
install.groups = [ "dev" ];
};
{% endif %}

{% block packages %}
stdenv.cc.cc.lib # required by jupyter
gcc-unwrapped # fix: libstdc++.so.6: cannot open shared object file
libz # fix: for numpy/pandas import
(python3.withPackages python-packages)
{% endblock %}
};
{% endblock %}

Expand Down

0 comments on commit 88fbed9

Please sign in to comment.