This commit is contained in:
Jeffrey C. Ollie 2023-02-11 10:24:44 -06:00
parent f5dc24c0cb
commit 6ed140e881
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -19,11 +19,11 @@
in
{
devShells.default =
let
python = pkgs.python310.withPackages (ps: with ps; [
poetry-core
]);
in
# let
# python = pkgs.python310.withPackages (ps: with ps; [
# poetry-core
# ]);
# in
pkgs.mkShell {
buildInputs = [
#python
@ -80,14 +80,14 @@
pydocstyle = super.pydocstyle.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [
pkgs.python3Packages.poetry
pkgs.python3Packages.poetry-core
];
}
);
pydocstringformatter = super.pydocstringformatter.overridePythonAttrs (
old: {
buildInputs = old.buildInputs ++ [
pkgs.python3Packages.poetry
pkgs.python3Packages.poetry-core
pkgs.python3Packages.setuptools
];
}