nixpkgs/pkgs/development/python-modules/qtawesome/default.nix
R. RyanTM c8eaf885d3 python36Packages.qtawesome: 0.5.1 -> 0.5.2
* python36Packages.qtawesome: 0.5.1 -> 0.5.2 (#50603)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-qtawesome/versions

*  pythonPackages.qtawesome: linux platforms only
2018-11-18 23:49:30 +01:00

21 lines
539 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, qtpy, six, pyside }:
buildPythonPackage rec {
pname = "QtAwesome";
version = "0.5.2";
src = fetchPypi {
inherit pname version;
sha256 = "1b5l9xmymyqlkm1phxyfw3s94ydkk3hykndjbkb24n5nfy46h5gl";
};
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;
platforms = platforms.linux; # fails on Darwin
};
}