mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
0215034f25
when they already rely on SRI hashes.
29 lines
740 B
Nix
29 lines
740 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyqt5-sip";
|
|
version = "12.11.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "PyQt5_sip";
|
|
inherit version;
|
|
hash = "sha256-tHEP2FtX7e9xbMVfrkW/1b+sb8e6kQNvHcw/Mxyg6zk=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|