pythonPackages.qdarkstyle: init at 2.6.5

This commit is contained in:
nyanloutre 2019-03-13 18:22:39 +01:00
parent 18b0cf78a6
commit 9b9f4d9005
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "qdarkstyle";
version = "2.6.5";
src = fetchPypi {
inherit version;
pname = "QDarkStyle";
sha256 = "96b14cd0440a0f73db4e14c5accdaa08072625d0395ae011d444508cbd73eb9e";
};
# No tests available
doCheck = false;
meta = with lib; {
description = "A dark stylesheet for Python and Qt applications";
homepage = https://github.com/ColinDuquesnoy/QDarkStyleSheet;
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
};
}

View File

@ -3983,6 +3983,8 @@ in {
retry_decorator = callPackage ../development/python-modules/retry_decorator { };
qdarkstyle = callPackage ../development/python-modules/qdarkstyle { };
quamash = callPackage ../development/python-modules/quamash { };
quandl = callPackage ../development/python-modules/quandl { };