python3Packages.rich-rst: add setuptools to nativeBuildInputs

authored by

Martin Weinelt and committed by
Sandro Jäckel
6bce590a 558bf96f

+5
+5
pkgs/development/python-modules/rich-rst/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , docutils 5 6 , rich 6 7 }: ··· 16 17 rev = "v${version}"; 17 18 sha256 = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk="; 18 19 }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 19 24 20 25 propagatedBuildInputs = [ docutils rich ]; 21 26