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:
parent
d70bdb7047
commit
11641a16fa
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue