2019-02-15 11:45:17 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, qtpy, six, pyqt5, pytest }:
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "QtAwesome";
|
2019-03-11 21:10:29 +00:00
|
|
|
version = "0.5.7";
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-03-11 21:10:29 +00:00
|
|
|
sha256 = "1c70k7b91f64df0v12ykv3xqj9pzgk919k215fb3y0d64zip42ai";
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Iconic fonts in PyQt and PySide applications";
|
|
|
|
homepage = https://github.com/spyder-ide/qtawesome;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|