Martin Weinelt ae4a1a485a
treewide: add explicit format attribute for Python packages
If a Python package does not come with either `format` or `pyproject` we
consider it a setuptools build, that calls `setup.py` directly, which is
deprecated.

This change, as a first step, migrates a large chunk of these packages to
set setuptools as their explicit format

This is so we can unify the problem space for the next step of the
migration.
2025-07-02 05:56:47 +02:00

54 lines
1.0 KiB
Nix

{
lib,
buildPythonApplication,
appdirs,
beautifulsoup4,
colorlog,
fetchFromGitHub,
mako,
online-judge-api-client,
online-judge-tools,
ply,
pyyaml,
requests,
setuptools,
toml,
}:
buildPythonApplication rec {
pname = "online-judge-template-generator";
version = "4.8.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "online-judge-tools";
repo = "template-generator";
rev = "v${version}";
sha256 = "sha256-cS1ED1a92fEFqy6ht8UFjxocWIm35IA/VuaPSLsdlqg=";
};
propagatedBuildInputs = [
appdirs
beautifulsoup4
colorlog
mako
online-judge-api-client
online-judge-tools
ply
pyyaml
requests
setuptools
toml
];
# Needs internet to run tests
doCheck = false;
meta = with lib; {
description = "Analyze problems of competitive programming and automatically generate boilerplate";
homepage = "https://github.com/online-judge-tools/template-generator";
license = licenses.mit;
maintainers = with maintainers; [ sei40kr ];
};
}