mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
31 lines
725 B
Nix
31 lines
725 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mesa,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyqt5-sip";
|
|
version = "12.15.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyQt5_sip";
|
|
inherit version;
|
|
hash = "sha256-0j/fzzY7XO3Z05+KnFcQ59UoBPWwiljpHGOLNur8twI=";
|
|
};
|
|
|
|
# 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://github.com/Python-SIP/sip";
|
|
license = licenses.gpl3Only;
|
|
inherit (mesa.meta) platforms;
|
|
maintainers = with maintainers; [ sander ];
|
|
};
|
|
}
|