mob next [ci-skip] [ci skip] [skip ci]

lastFile:pkgs/python/py-moneyed/default.nix
This commit is contained in:
2025-10-08 16:27:45 +07:00
parent 4cda4d067a
commit 1e2f44f782
17 changed files with 271 additions and 72 deletions

View File

@@ -1,6 +1,25 @@
{ lib, buildPythonPackage, fetchFromGitHub, setuptools, setuptools-scm, wheel
, prettytable, tomli, autopep8, black, docutils, isort, mypy, pip-tools
, pypandoc, pytest-cov, pytest-pycodestyle, pytest-runner, tomli-w, twine, }:
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
wheel,
prettytable,
tomli,
autopep8,
black,
docutils,
isort,
mypy,
pip-tools,
pypandoc,
pytest-cov,
pytest-pycodestyle,
pytest-runner,
tomli-w,
twine,
}:
buildPythonPackage rec {
pname = "pip-licenses";
@@ -14,9 +33,16 @@ buildPythonPackage rec {
hash = "sha256-6xw6BCuXSzNcwkpHaEFC5UPpubPUwhx/pg6vZq2er7A=";
};
build-system = [ setuptools setuptools-scm wheel ];
build-system = [
setuptools
setuptools-scm
wheel
];
dependencies = [ prettytable tomli ];
dependencies = [
prettytable
tomli
];
optional-dependencies = {
dev = [
@@ -41,8 +67,7 @@ buildPythonPackage rec {
meta = {
description = "Dump the license list of packages installed with pip";
homepage = "https://github.com/raimon49/pip-licenses";
changelog =
"https://github.com/raimon49/pip-licenses/blob/${src.rev}/CHANGELOG.md";
changelog = "https://github.com/raimon49/pip-licenses/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};