depot/third_party/nixpkgs/pkgs/development/python-modules/pyqt-builder/default.nix

46 lines
793 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
packaging,
setuptools,
setuptools-scm,
sip,
wheel,
}:
buildPythonPackage rec {
pname = "pyqt-builder";
version = "1.16.2";
format = "pyproject";
src = fetchPypi {
pname = "pyqt_builder";
inherit version;
hash = "sha256-v3I823zSPSUS4qzae8a4HwD7BczF6aiEa9NNR1FM3bk=";
};
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://github.com/Python-PyQt/PyQt-builder";
license = licenses.gpl3Only;
maintainers = with maintainers; [ nrdxp ];
};
}