2017-11-15 15:18:08 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, qtpy, six, pyside }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "QtAwesome";
|
2019-02-04 09:02:14 +00:00
|
|
|
version = "0.5.6";
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-04 09:02:14 +00:00
|
|
|
sha256 = "0f6dvqmalzi4q4rrpl1xlrxanibam1nifzsgqb5z4jr4ap7kiyp3";
|
2017-11-15 15:18:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ qtpy six pyside ];
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|