1{ lib, fetchPypi, buildPythonPackage }:
2
3buildPythonPackage rec {
4 pname = "qdarkstyle";
5 version = "2.6.5";
6
7 src = fetchPypi {
8 inherit version;
9 pname = "QDarkStyle";
10 sha256 = "96b14cd0440a0f73db4e14c5accdaa08072625d0395ae011d444508cbd73eb9e";
11 };
12
13 # No tests available
14 doCheck = false;
15
16 meta = with lib; {
17 description = "A dark stylesheet for Python and Qt applications";
18 homepage = https://github.com/ColinDuquesnoy/QDarkStyleSheet;
19 license = licenses.mit;
20 maintainers = with maintainers; [ nyanloutre ];
21 };
22}