pythonPackages.qtawesome: init at 0.4.4
This commit is contained in:
19
pkgs/development/python-modules/qtawesome/default.nix
Normal file
19
pkgs/development/python-modules/qtawesome/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user