2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, qtpy, six, pyqt5, pytest }:
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "QtAwesome";
|
2021-02-20 09:09:16 +00:00
|
|
|
version = "1.0.2";
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 09:09:16 +00:00
|
|
|
sha256 = "771dd95ac4f50d647d18b4e892fd310a580b56d258476554c7b3498593dfd887";
|
2017-11-15 15:18:08 +00:00
|
|
|
};
|
|
|
|
|
2019-02-15 11:45:17 +00:00
|
|
|
propagatedBuildInputs = [ qtpy six ];
|
|
|
|
|
|
|
|
checkInputs = [ pyqt5 pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Requires https://github.com/boylea/qtbot
|
|
|
|
doCheck = false;
|
2017-11-15 15:18:08 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-15 15:18:08 +00:00
|
|
|
description = "Iconic fonts in PyQt and PySide applications";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/spyder-ide/qtawesome";
|
2017-11-15 15:18:08 +00:00
|
|
|
license = licenses.mit;
|
2018-11-18 22:49:30 +00:00
|
|
|
platforms = platforms.linux; # fails on Darwin
|
2017-11-15 15:18:08 +00:00
|
|
|
};
|
|
|
|
}
|