pythonPackages.qtawesome: init at 0.4.4

This commit is contained in:
Joerg Thalheim 2017-11-15 15:18:08 +00:00
parent 3320d5f7a8
commit f6592cc96d
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, qtpy, six, pyside }:
buildPythonPackage rec {
pname = "QtAwesome";
version = "0.4.4";
src = fetchPypi {
inherit pname version;
sha256 = "12l71wh9fcd79d6c7qfzp029iph6gv4daxpg2ddpzr9lrvcw3yah";
};
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;
};
}

View File

@ -17122,6 +17122,8 @@ in {
};
};
qtawesome = callPackage ../development/python-modules/qtawesome { };
qtconsole = callPackage ../development/python-modules/qtconsole { };
quantities = buildPythonPackage rec {