mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
3d12611232
Typer specifies the standard optional-dependencies package list, but then due to internal tooling includes it by default in Require-Dist. https://github.com/tiangolo/typer/blob/0.12.3/pyproject.toml#L71-L72 This is in line with changes that happened in typer 0.12.1 https://github.com/tiangolo/typer/releases/tag/0.12.1
49 lines
989 B
Nix
49 lines
989 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "cups-printers";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "audiusGmbH";
|
|
repo = "cups-printers";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-HTR9t9ElQmCzJfdWyu+JQ8xBfDNpXl8XtNsJxGSfBXk=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"typer"
|
|
"validators"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [ poetry-core ];
|
|
|
|
|
|
dependencies =
|
|
with python3.pkgs;
|
|
[
|
|
pycups
|
|
typer
|
|
validators
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "cups_printers" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for interacting with a CUPS server";
|
|
homepage = "https://github.com/audiusGmbH/cups-printers";
|
|
changelog = "https://github.com/audiusGmbH/cups-printers/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "cups-printers";
|
|
};
|
|
}
|