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