2017-11-15 15:18:08 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, qtpy, six, pyside }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "QtAwesome";
|
2018-11-18 22:49:30 +00:00
|
|
|
version = "0.5.2";
|
2017-11-15 15:18:08 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-18 22:49:30 +00:00
|
|
|
sha256 = "1b5l9xmymyqlkm1phxyfw3s94ydkk3hykndjbkb24n5nfy46h5gl";
|
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
|
|
|
};
|
|
|
|
}
|