Skip to content

Commit

Permalink
Merge pull request nix-community#1500 from dzmitry-lahoda-forks/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Feb 17, 2024
2 parents d04d053 + 137cbaf commit 403d923
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
15 changes: 15 additions & 0 deletions overrides/build-systems.json
Original file line number Diff line number Diff line change
Expand Up @@ -4026,6 +4026,9 @@
"poetry-core",
"setuptools"
],
"cylp": [
"setuptools"
],
"cymem": [
"cython",
"setuptools"
Expand Down Expand Up @@ -4553,6 +4556,9 @@
"poetry-core",
"setuptools"
],
"disjoint-set": [
"poetry"
],
"diskcache": [
"setuptools"
],
Expand Down Expand Up @@ -15542,6 +15548,9 @@
"setuptools",
"setuptools-scm"
],
"pyscipopt": [
"setuptools"
],
"pyscreenshot": [
"setuptools"
],
Expand Down Expand Up @@ -18743,6 +18752,9 @@
"shellingham": [
"setuptools"
],
"shelved-cache": [
"poetry"
],
"shexjsg": [
"pbr"
],
Expand Down Expand Up @@ -22004,6 +22016,9 @@
"winsspi": [
"setuptools"
],
"wirerope": [
"setuptools"
],
"withings-api": [
"poetry-core"
],
Expand Down
7 changes: 7 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,13 @@ lib.composeManyExtensions [
}
);

clarabel = super.dbt-extractor.overridePythonAttrs
(
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.cargo pkgs.rustc pkgs.maturin ];
}
);

cloudflare = super.cloudflare.overridePythonAttrs (
old: lib.optionalAttrs (!(old.src.isWheel or false)) {
postPatch = ''
Expand Down

0 comments on commit 403d923

Please sign in to comment.