depot/third_party/nixpkgs/pkgs/development/python-modules/pyqt-builder/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

39 lines
732 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, packaging
, setuptools
, sip
, wheel
}:
buildPythonPackage rec {
pname = "pyqt-builder";
version = "1.15.3";
format = "pyproject";
src = fetchPypi {
pname = "PyQt-builder";
inherit version;
hash = "sha256-WzPpnty3fUpjo4YF9EV6BM/04lTHce1SnryViZBszbE=";
};
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 ];
};
}