summary refs log tree commit diff
path: root/pkgs/development/python-modules/qdarkstyle/default.nix
blob: 425bb21a687b6c974841364f447e29531871b259 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "qdarkstyle";
  version = "2.6.8";

  src = fetchPypi {
    inherit version;
    pname = "QDarkStyle";
    sha256 = "18l2ynq2x8jd380nr47xy947c3qdmhv8nnxnan03y5d51azm8yh3";
  };

  # 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 ];
  };
}