python3Packages.rich-rst: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-18 03:26:15 +02:00 committed by Sandro Jäckel
parent 558bf96f8b
commit 6bce590ab4
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, setuptools
, docutils , docutils
, rich , rich
}: }:
@ -17,6 +18,10 @@ buildPythonPackage rec {
sha256 = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk="; sha256 = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk=";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ docutils rich ]; propagatedBuildInputs = [ docutils rich ];
# Module has no tests # Module has no tests