nixpkgs/pkgs/development/python-modules/pyqt-builder/default.nix
Theodore Ni ab5780d323
python3.pkgs.pyqt-builder: 1.14.1 -> 1.15.2
Co-authored-by: rewine <lhongxu@outlook.com>
2023-08-12 12:15:53 -07:00

40 lines
732 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, packaging
, setuptools
, sip
, wheel
}:
buildPythonPackage rec {
pname = "pyqt-builder";
version = "1.15.2";
format = "pyproject";
src = fetchPypi {
pname = "PyQt-builder";
inherit version;
hash = "sha256-dGz+g8A+v/RFjUeKHAZxR5Dvk+RY7NWii8KDe6yI63Q=";
};
nativeBuildInputs = [
setuptools
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 ];
};
}