1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "django-paintstore"; 9 version = "0.2"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "12wxgwv1qbkfq7w5i7bm7aidv655c2sxp0ym73qf8606dxbjcwwg"; 15 }; 16 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Django app that integrates jQuery ColorPicker with the Django admin"; 21 homepage = "https://github.com/gsiegman/django-paintstore"; 22 license = licenses.mit; 23 }; 24}