lol

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 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , docutils 5 , rich 6 }: ··· 16 rev = "v${version}"; 17 sha256 = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk="; 18 }; 19 20 propagatedBuildInputs = [ docutils rich ]; 21
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , setuptools 5 , docutils 6 , rich 7 }: ··· 17 rev = "v${version}"; 18 sha256 = "sha256-s48hdJo1LIRXTf+PeSBa6y/AH1NLmnyAafFydJ+exDk="; 19 }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 25 propagatedBuildInputs = [ docutils rich ]; 26