2021-11-12 09:22:34 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
}:
|
2019-08-30 12:23:02 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-paintstore";
|
|
|
|
version = "0.2";
|
2023-12-07 03:53:02 +00:00
|
|
|
format = "setuptools";
|
2019-08-30 12:23:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "12wxgwv1qbkfq7w5i7bm7aidv655c2sxp0ym73qf8606dxbjcwwg";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-08-30 12:23:02 +00:00
|
|
|
description = "Django app that integrates jQuery ColorPicker with the Django admin";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/gsiegman/django-paintstore";
|
2019-08-30 12:23:02 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|