Merge pull request #278157 from mweinelt/buildPythonApplication-example

doc/python: update buildPythonApplication example
This commit is contained in:
Martin Weinelt
2024-01-02 10:11:11 +01:00
committed by GitHub
+5 -6
View File
@@ -299,14 +299,13 @@ python3Packages.buildPythonApplication rec {
hash = "sha256-Pe229rT0aHwA98s+nTHQMEFKZPo/yw6sot8MivFDvAw=";
};
nativeBuildInputs = [
python3Packages.setuptools
python3Packages.wheel
nativeBuildInputs = with python3Packages; [
setuptools
];
propagatedBuildInputs = [
python3Packages.tornado
python3Packages.python-daemon
propagatedBuildInputs = with python3Packages; [
tornado
python-daemon
];
meta = with lib; {