push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch2,
setuptools,
}:
buildPythonPackage rec {
pname = "humanfriendly";
version = "10.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc";
};
patches = [
(fetchpatch2 {
# https://github.com/xolox/python-humanfriendly/pull/75
url = "https://github.com/musicinmybrain/python-humanfriendly/commit/13d05b8057010121acd2a402a337ef4ee5834062.patch";
hash = "sha256-m7cySiIx0gNhh6KKhT71DJFOtFu2Copk9ic2yaiCulk=";
})
];
build-system = [ setuptools ];
# humanfriendly tests depends on coloredlogs which itself depends on
# humanfriendly. This lead to infinite recursion when trying to
# build this package so we have to disable the test suite :(
doCheck = false;
meta = with lib; {
description = "Human friendly output for text interfaces using Python";
mainProgram = "humanfriendly";
homepage = "https://humanfriendly.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ montag451 ];
};
}