mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
Add some more overrides for setuptools-scm
This commit is contained in:
parent
62f5566c6d
commit
95fa75b48a
1 changed files with 11 additions and 1 deletions
|
@ -23,6 +23,8 @@ let
|
|||
in
|
||||
{
|
||||
|
||||
apipkg = addSetupTools super.apipkg;
|
||||
|
||||
asciimatics = super.asciimatics.overrideAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs ++ [
|
||||
|
@ -94,6 +96,8 @@ in
|
|||
# Environment markers are not always included (depending on how a dep was defined)
|
||||
enum34 = if self.pythonAtLeast "3.4" then null else super.enum34;
|
||||
|
||||
execnet = addSetupTools super.execnet;
|
||||
|
||||
grandalf = super.grandalf.overrideAttrs (
|
||||
old: {
|
||||
postPatch = ''
|
||||
|
@ -338,10 +342,14 @@ in
|
|||
|
||||
pytest = addSetupTools super.pytest;
|
||||
|
||||
pytest-mock = addSetupTools super.pytest-mock;
|
||||
pytest-black = addSetupTools super.pytest-black;
|
||||
|
||||
python-dateutil = addSetupTools super.python-dateutil;
|
||||
|
||||
pytest-forked = addSetupTools super.pytest-forked;
|
||||
|
||||
pytest-mock = addSetupTools super.pytest-mock;
|
||||
|
||||
python-prctl = super.python-prctl.overrideAttrs (
|
||||
old: {
|
||||
buildInputs = old.buildInputs ++ [
|
||||
|
@ -351,6 +359,8 @@ in
|
|||
}
|
||||
);
|
||||
|
||||
pytest-xdist = addSetupTools super.pytest-xdist;
|
||||
|
||||
scaleapi = super.scaleapi.overrideAttrs (
|
||||
old: {
|
||||
postPatch = ''
|
||||
|
|
Loading…
Add table
Reference in a new issue