mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 23:37:52 +00:00
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:
parent
e57b65abbb
commit
936092be1a
@ -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
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user