Files
nixpkgs/pkgs/development/python-modules/piccolo-theme/default.nix
T
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

28 lines
644 B
Nix

{ lib, buildPythonPackage, fetchPypi, sphinx }:
buildPythonPackage rec {
pname = "piccolo-theme";
version = "0.19.0";
format = "setuptools";
src = fetchPypi {
pname = "piccolo_theme";
inherit version;
hash = "sha256-pGMOc/GSh3q2HW1mfW+XFgpOyiXd3cdh56cvXatseuc=";
};
propagatedBuildInputs = [
sphinx
];
pythonImportsCheck = [ "piccolo_theme" ];
meta = with lib; {
description = "Clean and modern Sphinx theme";
homepage = "https://piccolo-theme.readthedocs.io";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ loicreynier ];
platforms = platforms.unix;
};
}