Skip to content

Commit

Permalink
pythonPackages.qdarkstyle: init at 2.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanloutre committed Mar 14, 2019
1 parent 18b0cf7 commit 9b9f4d9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/qdarkstyle/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 9b9f4d9

Please sign in to comment.