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