1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "colorlover"; 8 version = "0.3.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2"; 13 }; 14 15 # no tests included in distributed archive 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/jackparmer/colorlover"; 20 description = "Color scales in Python for humans"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ globin ]; 23 }; 24}