2022-02-20 05:27:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyqt5-sip";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "12.13.0";
|
2022-02-20 05:27:41 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "PyQt5_sip";
|
|
|
|
inherit version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-fzIdr4S5ydvKYbgOHvN72v/A6TMS7a4s19oluVOXHZE=";
|
2022-02-20 05:27:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# There is no test code and the check phase fails with:
|
|
|
|
# > error: could not create 'PyQt5/sip.cpython-38-x86_64-linux-gnu.so': No such file or directory
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = ["PyQt5.sip"];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python bindings for Qt5";
|
|
|
|
homepage = "https://www.riverbankcomputing.com/software/sip/";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
platforms = platforms.mesaPlatforms;
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
};
|
|
|
|
}
|