nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 29 lines 619 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, helpdev 5, qtpy 6}: 7 8buildPythonPackage rec { 9 pname = "qdarkstyle"; 10 version = "3.0.3"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "QDarkStyle"; 15 sha256 = "936d2d35b552f429803a985dbc17fc879a2f966faa9fbf8983896ccfa33e68f6"; 16 }; 17 18 # No tests available 19 doCheck = false; 20 21 propagatedBuildInputs = [ helpdev qtpy ]; 22 23 meta = with lib; { 24 description = "A dark stylesheet for Python and Qt applications"; 25 homepage = "https://github.com/ColinDuquesnoy/QDarkStyleSheet"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ nyanloutre ]; 28 }; 29}