Use propagatedBuildInputs for Python dependencies

When I ran rpl, I got the error

```
ModuleNotFoundError: No module named 'chardet'
```

but making this change to use propagatedBuildInputs fixed it, as
described at
https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/python.section.md#handling-dependencies-handling-dependencies
This commit is contained in:
Leon Barrett 2023-06-15 21:07:16 -07:00
parent e57b65abbb
commit 936092be1a

View file

@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec {
./remove-argparse-manpage.diff # quickfix for ImportError: No module named build_manpages.build_manpages
];
buildInputs = [
propagatedBuildInputs = [
#python3Packages.argparse-manpage # TODO
python3Packages.chardet
];