Show More
@@ -0,0 +1,10 b'' | |||||
|
1 | diff -rup configparser-4.0.2-orig/pyproject.toml configparser-4.0.2/pyproject.toml | |||
|
2 | --- configparser-4.0.2-orig/pyproject.toml 2021-03-22 21:28:11.000000000 +0100 | |||
|
3 | +++ configparser-4.0.2/pyproject.toml 2021-03-22 21:28:11.000000000 +0100 | |||
|
4 | @@ -1,5 +1,5 @@ | |||
|
5 | [build-system] | |||
|
6 | -requires = ["setuptools>=40.7", "wheel", "setuptools_scm>=1.15"] | |||
|
7 | +requires = ["setuptools<=42.0", "wheel", "setuptools_scm<6.0.0"] | |||
|
8 | build-backend = "setuptools.build_meta" | |||
|
9 | ||||
|
10 | [tool.black] |
@@ -0,0 +1,7 b'' | |||||
|
1 | diff -rup importlib-metadata-1.6.0-orig/yproject.toml importlib-metadata-1.6.0/pyproject.toml | |||
|
2 | --- importlib-metadata-1.6.0-orig/yproject.toml 2021-03-22 22:10:33.000000000 +0100 | |||
|
3 | +++ importlib-metadata-1.6.0/pyproject.toml 2021-03-22 22:11:09.000000000 +0100 | |||
|
4 | @@ -1,3 +1,3 @@ | |||
|
5 | [build-system] | |||
|
6 | -requires = ["setuptools>=30.3", "wheel", "setuptools_scm"] | |||
|
7 | +requires = ["setuptools<42.0", "wheel", "setuptools_scm<6.0.0"] |
@@ -0,0 +1,10 b'' | |||||
|
1 | diff -rup zip-1.2.0-orig/pyproject.toml zip-1.2.0/pyproject.toml | |||
|
2 | --- zip-1.2.0-orig/pyproject.toml 2021-03-23 10:55:37.000000000 +0100 | |||
|
3 | +++ zip-1.2.0/pyproject.toml 2021-03-23 10:56:05.000000000 +0100 | |||
|
4 | @@ -1,5 +1,5 @@ | |||
|
5 | [build-system] | |||
|
6 | -requires = ["setuptools>=34.4", "wheel", "setuptools_scm>=1.15"] | |||
|
7 | +requires = ["setuptools<42.0", "wheel", "setuptools_scm<6.0.0"] | |||
|
8 | build-backend = "setuptools.build_meta" | |||
|
9 | ||||
|
10 | [tool.black] |
@@ -6,7 +6,7 b' diff -rup pytest-4.6.5-orig/setup.py pyt' | |||||
6 | setup( |
|
6 | setup( | |
7 | use_scm_version={"write_to": "src/_pytest/_version.py"}, |
|
7 | use_scm_version={"write_to": "src/_pytest/_version.py"}, | |
8 | - setup_requires=["setuptools-scm", "setuptools>=40.0"], |
|
8 | - setup_requires=["setuptools-scm", "setuptools>=40.0"], | |
9 | + setup_requires=["setuptools-scm", "setuptools<=42.0"], |
|
9 | + setup_requires=["setuptools-scm<6.0.0", "setuptools<=42.0"], | |
10 | package_dir={"": "src"}, |
|
10 | package_dir={"": "src"}, | |
11 | # fmt: off |
|
11 | # fmt: off | |
12 | extras_require={ No newline at end of file |
|
12 | extras_require={ |
@@ -280,6 +280,54 b' self: super: {' | |||||
280 | ]; |
|
280 | ]; | |
281 | }); |
|
281 | }); | |
282 |
|
282 | |||
|
283 | "pytest-runner" = super."pytest-runner".override (attrs: { | |||
|
284 | propagatedBuildInputs = [ | |||
|
285 | self."setuptools-scm" | |||
|
286 | ]; | |||
|
287 | }); | |||
|
288 | ||||
|
289 | "py" = super."py".override (attrs: { | |||
|
290 | propagatedBuildInputs = [ | |||
|
291 | self."setuptools-scm" | |||
|
292 | ]; | |||
|
293 | }); | |||
|
294 | ||||
|
295 | "python-dateutil" = super."python-dateutil".override (attrs: { | |||
|
296 | propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | |||
|
297 | self."setuptools-scm" | |||
|
298 | ]; | |||
|
299 | }); | |||
|
300 | ||||
|
301 | "configparser" = super."configparser".override (attrs: { | |||
|
302 | patches = [ | |||
|
303 | ./patches/configparser/pyproject.patch | |||
|
304 | ]; | |||
|
305 | propagatedBuildInputs = [ | |||
|
306 | self."setuptools-scm" | |||
|
307 | ]; | |||
|
308 | }); | |||
|
309 | ||||
|
310 | "importlib-metadata" = super."importlib-metadata".override (attrs: { | |||
|
311 | ||||
|
312 | patches = [ | |||
|
313 | ./patches/importlib_metadata/pyproject.patch | |||
|
314 | ]; | |||
|
315 | ||||
|
316 | propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | |||
|
317 | self."setuptools-scm" | |||
|
318 | ]; | |||
|
319 | ||||
|
320 | }); | |||
|
321 | ||||
|
322 | "zipp" = super."zipp".override (attrs: { | |||
|
323 | patches = [ | |||
|
324 | ./patches/zipp/pyproject.patch | |||
|
325 | ]; | |||
|
326 | propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ | |||
|
327 | self."setuptools-scm" | |||
|
328 | ]; | |||
|
329 | }); | |||
|
330 | ||||
283 | "pyramid-apispec" = super."pyramid-apispec".override (attrs: { |
|
331 | "pyramid-apispec" = super."pyramid-apispec".override (attrs: { | |
284 | patches = [ |
|
332 | patches = [ | |
285 | ./patches/pyramid_apispec/setuptools.patch |
|
333 | ./patches/pyramid_apispec/setuptools.patch |
@@ -2092,6 +2092,17 b' self: super: {' | |||||
2092 | license = [ pkgs.lib.licenses.mit ]; |
|
2092 | license = [ pkgs.lib.licenses.mit ]; | |
2093 | }; |
|
2093 | }; | |
2094 | }; |
|
2094 | }; | |
|
2095 | "setuptools-scm" = super.buildPythonPackage { | |||
|
2096 | name = "setuptools-scm-3.5.0"; | |||
|
2097 | doCheck = false; | |||
|
2098 | src = fetchurl { | |||
|
2099 | url = "https://files.pythonhosted.org/packages/b2/f7/60a645aae001a2e06cf4b8db2fba9d9f36b8fd378f10647e3e218b61b74b/setuptools_scm-3.5.0.tar.gz"; | |||
|
2100 | sha256 = "5bdf21a05792903cafe7ae0c9501182ab52497614fa6b1750d9dbae7b60c1a87"; | |||
|
2101 | }; | |||
|
2102 | meta = { | |||
|
2103 | license = [ pkgs.lib.licenses.psfl ]; | |||
|
2104 | }; | |||
|
2105 | }; | |||
2095 | "simplegeneric" = super.buildPythonPackage { |
|
2106 | "simplegeneric" = super.buildPythonPackage { | |
2096 | name = "simplegeneric-0.8.1"; |
|
2107 | name = "simplegeneric-0.8.1"; | |
2097 | doCheck = false; |
|
2108 | doCheck = false; |
General Comments 0
You need to be logged in to leave comments.
Login now