Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, fetchPypi 3, buildPythonPackage 4, helpdev 5, qtpy 6}: 7 8buildPythonPackage rec { 9 pname = "qdarkstyle"; 10 version = "3.1"; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "QDarkStyle"; 15 hash = "sha256-YAWE1iU0Pg3dEo3gg5PTw1Y3eGpJgn8XTSmqfKqCecE="; 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}