Merge pull request #321 from daedric/master

Add overrides for marisa-trie, ua-parser and lazy-object-proxy
This commit is contained in:
adisbladis 2021-06-10 10:54:26 -05:00 committed by GitHub
commit 74303472ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
);
}