1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 00:49:52 +00:00

pythonPackages.qdarkstyle: 2.6.8 -> 2.8

This commit is contained in:
Frederik Rietdijk 2020-02-16 09:47:28 +01:00
parent d70bdb7047
commit 11641a16fa

View file

@ -1,18 +1,25 @@
{ lib, fetchPypi, buildPythonPackage }: { lib
, fetchPypi
, buildPythonPackage
, helpdev
, qtpy
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "qdarkstyle"; pname = "qdarkstyle";
version = "2.6.8"; version = "2.8";
src = fetchPypi { src = fetchPypi {
inherit version; inherit version;
pname = "QDarkStyle"; pname = "QDarkStyle";
sha256 = "18l2ynq2x8jd380nr47xy947c3qdmhv8nnxnan03y5d51azm8yh3"; sha256 = "6a967c4b664446f8bed9df12d1032cf68cb54f186bfc9cbfdbbc756bf9a5d475";
}; };
# No tests available # No tests available
doCheck = false; doCheck = false;
propagatedBuildInputs = [ helpdev qtpy ];
meta = with lib; { meta = with lib; {
description = "A dark stylesheet for Python and Qt applications"; description = "A dark stylesheet for Python and Qt applications";
homepage = https://github.com/ColinDuquesnoy/QDarkStyleSheet; homepage = https://github.com/ColinDuquesnoy/QDarkStyleSheet;