blob: e6d29d195c4df9017a4f146897bd9850536573fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchPypi,
mesa,
}:
buildPythonPackage rec {
pname = "pyqt5-sip";
version = "12.17.0";
format = "setuptools";
src = fetchPypi {
pname = "pyqt5_sip";
inherit version;
hash = "sha256-aC2tzb0iOa+f3AwGKOJ3a4IOEovsiLSbjWkv5oL5C08=";
};
# 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 = {
description = "Python bindings for Qt5";
homepage = "https://github.com/Python-SIP/sip";
license = lib.licenses.gpl3Only;
inherit (mesa.meta) platforms;
};
}
|