Changelog for this package doesn't exist, and haven't exist before. So delete meta.changelog field
38 lines
736 B
Nix
38 lines
736 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "polygon-cli";
|
|
version = "1.1.11";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-gEz3kcXbXj9dXnMCx0Q8TjCQemXvJne9EwFsPt14xV4=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
requests
|
|
prettytable
|
|
colorama
|
|
pyyaml
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "polygon_cli" ];
|
|
|
|
meta = {
|
|
description = "Command-line tool for polygon.codeforces.com";
|
|
mainProgram = "polygon-cli";
|
|
homepage = "https://github.com/kunyavskiy/polygon-cli";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ khaser ];
|
|
};
|
|
}
|