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