mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
27 lines
630 B
Nix
27 lines
630 B
Nix
{ lib, fetchPypi, buildPythonPackage, packaging, sip }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyqt-builder";
|
|
version = "1.14.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyQt-builder";
|
|
inherit version;
|
|
sha256 = "sha256-Z1WTHG0viUBVPgM00QyTPOXMGLZEJelP2hrM9P93T1k=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|