Merge pull request #112770 from tweag/poetry2nix-1_15_4

poetry2nix: 1.15.3 -> 1.15.4

authored by

adisbladis and committed by
GitHub
4dae2acb af041ddb

+20 -1
+1 -1
pkgs/development/tools/poetry2nix/poetry2nix/default.nix
··· 71 71 lib.makeScope pkgs.newScope (self: { 72 72 73 73 # Poetry2nix version 74 - version = "1.15.3"; 74 + version = "1.15.4"; 75 75 76 76 /* Returns a package of editable sources whose changes will be available without needing to restart the 77 77 nix-shell.
+19
pkgs/development/tools/poetry2nix/poetry2nix/overrides.nix
··· 81 81 } 82 82 ); 83 83 84 + celery = super.celery.overridePythonAttrs (old: { 85 + propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.setuptools ]; 86 + }); 87 + 84 88 cssselect2 = super.cssselect2.overridePythonAttrs ( 85 89 old: { 86 90 buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ]; ··· 135 139 } 136 140 ); 137 141 142 + daphne = super.daphne.overridePythonAttrs (old: { 143 + postPatch = '' 144 + substituteInPlace setup.py --replace 'setup_requires=["pytest-runner"],' "" 145 + ''; 146 + }); 147 + 138 148 datadog-lambda = super.datadog-lambda.overridePythonAttrs (old: { 139 149 postPatch = '' 140 150 substituteInPlace setup.py --replace "setuptools==" "setuptools>=" 141 151 ''; 142 152 buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ]; 153 + }); 154 + 155 + dcli = super.dcli.overridePythonAttrs (old: { 156 + propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ]; 143 157 }); 144 158 145 159 ddtrace = super.ddtrace.overridePythonAttrs (old: { ··· 363 377 dontPreferSetupPy = true; 364 378 } 365 379 ); 380 + 381 + jsonslicer = super.jsonslicer.overridePythonAttrs (old: { 382 + nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkgconfig ]; 383 + buildInputs = old.buildInputs ++ [ pkgs.yajl ]; 384 + }); 366 385 367 386 jupyter = super.jupyter.overridePythonAttrs ( 368 387 old: rec {