Merge: matrix-synapse: 1.122.0 -> 1.123.0 (#378018)
[NixPkgs.git] / pkgs / development / python-modules / afdko / no-pypi-build-tools.patch
bloba3ef7dd23b857e938a1c5e96e307026cf2418191
1 commit a5fde72bd15e0baba008ea54270a1ffe017544a0
2 Author: sternenseemann <sternenseemann@systemli.org>
3 Date: Tue Oct 5 18:17:20 2021 +0200
5 Don't use pypi distributions of build tools
7 We want to use regular cmake and ninja and not the pypi projects which
8 somehow wrap and vendor a version of the proper tool.
10 diff --git a/setup.py b/setup.py
11 index 973e2826..dba58766 100644
12 --- a/setup.py
13 +++ b/setup.py
14 @@ -198,9 +198,7 @@ def main():
15 setup_requires=[
16 'wheel',
17 'setuptools_scm',
18 - 'scikit-build',
19 - 'cmake',
20 - 'ninja'
21 + 'scikit-build'
23 tests_require=[
24 'pytest',