python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / qdarkstyle / default.nix
blob80dca57b1d6a179a723116833da985d4cd94e8b9
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   helpdev,
6   qtpy,
7 }:
9 buildPythonPackage rec {
10   pname = "qdarkstyle";
11   version = "3.2.3";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit version;
16     pname = "QDarkStyle";
17     hash = "sha256-DAt/dKbpISEAiZKzabq2BGgVfbHALNMNZKXpo7QC8a4=";
18   };
20   # No tests available
21   doCheck = false;
23   propagatedBuildInputs = [
24     helpdev
25     qtpy
26   ];
28   meta = with lib; {
29     description = "Dark stylesheet for Python and Qt applications";
30     homepage = "https://github.com/ColinDuquesnoy/QDarkStyleSheet";
31     license = licenses.mit;
32     maintainers = with maintainers; [ nyanloutre ];
33   };