mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 17:21:39 -05:00
Merge pull request #228 from sireliah/override-datadog-lambda
Add overrides for datadog libraries
This commit is contained in:
commit
84a5da7b59
1 changed files with 12 additions and 0 deletions
|
@ -132,6 +132,18 @@ self: super:
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
datadog-lambda = super.datadog-lambda.overridePythonAttrs (old: {
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace "setuptools==" "setuptools>="
|
||||||
|
'';
|
||||||
|
buildInputs = old.buildInputs ++ [ self.setuptools ];
|
||||||
|
});
|
||||||
|
|
||||||
|
ddtrace = super.ddtrace.overridePythonAttrs (old: {
|
||||||
|
buildInputs = old.buildInputs ++
|
||||||
|
(pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.darwin.IOKit ]) ++ [ self.cython ];
|
||||||
|
});
|
||||||
|
|
||||||
dictdiffer = super.dictdiffer.overridePythonAttrs (
|
dictdiffer = super.dictdiffer.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = old.buildInputs ++ [ self.pytest-runner ];
|
buildInputs = old.buildInputs ++ [ self.pytest-runner ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue