about summary refs log tree commit diff
path: root/pkgs/development/python-modules/qdarkstyle/default.nix
blob: 80dca57b1d6a179a723116833da985d4cd94e8b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  lib,
  fetchPypi,
  buildPythonPackage,
  helpdev,
  qtpy,
}:

buildPythonPackage rec {
  pname = "qdarkstyle";
  version = "3.2.3";
  format = "setuptools";

  src = fetchPypi {
    inherit version;
    pname = "QDarkStyle";
    hash = "sha256-DAt/dKbpISEAiZKzabq2BGgVfbHALNMNZKXpo7QC8a4=";
  };

  # No tests available
  doCheck = false;

  propagatedBuildInputs = [
    helpdev
    qtpy
  ];

  meta = with lib; {
    description = "Dark stylesheet for Python and Qt applications";
    homepage = "https://github.com/ColinDuquesnoy/QDarkStyleSheet";
    license = licenses.mit;
    maintainers = with maintainers; [ nyanloutre ];
  };
}