NixOS 24.05: add setuptools

This commit is contained in:
Daniel Langbein 2024-07-12 23:06:33 +02:00
parent 3686c62476
commit b0f55047cd
2 changed files with 7 additions and 1 deletions

View File

@ -8,7 +8,7 @@ let
( (
buildPythonPackage rec { buildPythonPackage rec {
pname = "de.p1st.monitor"; pname = "de.p1st.monitor";
version = "0.12.1"; version = "0.12.1"; # TOODO 0.12.2
# https://nixos.wiki/wiki/Packaging/Python#Fix_Missing_setup.py # https://nixos.wiki/wiki/Packaging/Python#Fix_Missing_setup.py
format = "pyproject"; format = "pyproject";
src = fetchPypi { src = fetchPypi {
@ -22,6 +22,9 @@ let
build build
twine twine
]; ];
nativeBuildInputs = with pkgs.python3Packages; [
setuptools
];
} }
) )
]; ];

View File

@ -20,6 +20,9 @@ let
build build
twine twine
]; ];
nativeBuildInputs = with pkgs.python3Packages; [
setuptools
];
} }
) )
]; ];