My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/qdarkstyle/default.nix

29 lines
619 B

{ lib
, fetchPypi
, buildPythonPackage
, helpdev
, qtpy
}:
buildPythonPackage rec {
pname = "qdarkstyle";
version = "3.0.3";
src = fetchPypi {
inherit version;
pname = "QDarkStyle";
sha256 = "936d2d35b552f429803a985dbc17fc879a2f966faa9fbf8983896ccfa33e68f6";
};
# No tests available
doCheck = false;
propagatedBuildInputs = [ helpdev qtpy ];
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 ];
};
}