1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 helpdev, 6 qtpy, 7}: 8 9buildPythonPackage rec { 10 pname = "qdarkstyle"; 11 version = "3.2.3"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit version; 16 pname = "QDarkStyle"; 17 hash = "sha256-DAt/dKbpISEAiZKzabq2BGgVfbHALNMNZKXpo7QC8a4="; 18 }; 19 20 # No tests available 21 doCheck = false; 22 23 propagatedBuildInputs = [ 24 helpdev 25 qtpy 26 ]; 27 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 }; 34}