5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
41 lines
768 B
Nix
41 lines
768 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, packaging
|
|
, setuptools
|
|
, setuptools-scm
|
|
, sip
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyqt-builder";
|
|
version = "1.16.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyQt-builder";
|
|
inherit version;
|
|
hash = "sha256-R7vSz6VDACAQj59AMB4WbL6pi27z5TlTNQvdTGsxqxg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [ packaging sip ];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ nrdxp ];
|
|
};
|
|
}
|