blob: 04bce0b8eed770ab209df845b03f4b33517fbe65 (
plain)
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 = {
description = "Dark stylesheet for Python and Qt applications";
homepage = "https://github.com/ColinDuquesnoy/QDarkStyleSheet";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nyanloutre ];
};
}
|