4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
33 lines
834 B
Nix
33 lines
834 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, python3Packages
|
|
, pythonOlder
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "qpageview";
|
|
version = "0.6.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "frescobaldi";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-XFMTOD7ums8sbFHUViEI9q6/rCjUmEtXAdd3/OmLsHU=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [ pyqt5 poppler-qt5 pycups ];
|
|
|
|
pythonImportsCheck = [ "qpageview" ];
|
|
|
|
meta = with lib; {
|
|
description = "A page-based viewer widget for Qt5/PyQt5";
|
|
homepage = "https://github.com/frescobaldi/qpageview";
|
|
changelog = "https://github.com/frescobaldi/qpageview/blob/${src.rev}/ChangeLog";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ camillemndn ];
|
|
};
|
|
}
|