1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 packaging,
6 setuptools,
7 setuptools-scm,
8 sip,
9}:
10
11buildPythonPackage rec {
12 pname = "pyqt-builder";
13 version = "1.18.2";
14 pyproject = true;
15
16 src = fetchPypi {
17 pname = "pyqt_builder";
18 inherit version;
19 hash = "sha256-Vt/qRhSEqHqPDIsCKRkN78Q21+xd5xEC4gs15WORgLw=";
20 };
21
22 build-system = [
23 setuptools
24 setuptools-scm
25 ];
26
27 dependencies = [
28 packaging
29 sip
30 ];
31
32 pythonImportsCheck = [ "pyqtbuild" ];
33
34 # There aren't tests
35 doCheck = false;
36
37 meta = with lib; {
38 description = "PEP 517 compliant build system for PyQt";
39 homepage = "https://github.com/Python-PyQt/PyQt-builder";
40 license = licenses.gpl3Only;
41 maintainers = with maintainers; [ ];
42 };
43}