2021-05-20 23:08:51 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, packaging, sip }:
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyqt-builder";
|
2023-03-15 16:39:30 +00:00
|
|
|
version = "1.14.1";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "PyQt-builder";
|
|
|
|
inherit version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-g7w+MAr/i0FAWAS2qcKRM4mrWcSK2fDLhYSm73O8pQI=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [ packaging sip ];
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "pyqtbuild" ];
|
|
|
|
|
|
|
|
# There aren't tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "PEP 517 compliant build system for PyQt";
|
|
|
|
homepage = "https://pypi.org/project/PyQt-builder/";
|
|
|
|
license = licenses.gpl3Only;
|
2022-10-21 18:38:19 +00:00
|
|
|
maintainers = with maintainers; [ nrdxp ];
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
}
|