nixpkgs-suyu/pkgs/development/python-modules/django-paintstore/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

20 lines
493 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "django-paintstore";
version = "0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "12wxgwv1qbkfq7w5i7bm7aidv655c2sxp0ym73qf8606dxbjcwwg";
};
doCheck = false;
meta = with lib; {
description = "Django app that integrates jQuery ColorPicker with the Django admin";
homepage = "https://github.com/gsiegman/django-paintstore";
license = licenses.mit;
};
}