mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Merge pull request #321 from daedric/master
Add overrides for marisa-trie, ua-parser and lazy-object-proxy
This commit is contained in:
commit
74303472ac
1 changed files with 19 additions and 0 deletions
|
@ -1839,4 +1839,23 @@ self: super:
|
|||
'';
|
||||
});
|
||||
|
||||
marisa-trie = super.marisa-trie.overridePythonAttrs (
|
||||
old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
|
||||
}
|
||||
);
|
||||
|
||||
ua-parser = super.ua-parser.overridePythonAttrs (
|
||||
old: {
|
||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.pyyaml ];
|
||||
}
|
||||
);
|
||||
|
||||
lazy-object-proxy = super.lazy-object-proxy.overridePythonAttrs (
|
||||
old: {
|
||||
# disable the removal of pyproject.toml, required because of setuptools_scm
|
||||
dontPreferSetupPy = true;
|
||||
}
|
||||
);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue