Files
nixpkgs/pkgs/development/python-modules/bubop/default.nix
Raito Bezarius 6a63a4ad8b pkgs/*: drop maintenanceship of various packages
I have effectively renounced on maintaining all these packages and I do
not plan to return them except if I'm forced to.

I am also fine with most of these packages being dropped for next
releases if no maintainer shows up.

Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
2026-06-24 20:34:45 +02:00

53 lines
997 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
poetry-dynamic-versioning,
loguru,
python-dateutil,
pyyaml,
tqdm,
click,
}:
buildPythonPackage rec {
pname = "bubop";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "bergercookie";
repo = "bubop";
tag = "v${version}";
hash = "sha256-NXA3UDOkCoj4dm3UO/X0w2Mpx4bw3yFO6oyOzsPgtrU=";
};
postPatch = ''
# Those versions seems to work with `bubop`.
'';
build-system = [
poetry-core
poetry-dynamic-versioning
];
dependencies = [
loguru
python-dateutil
pyyaml
tqdm
click
];
pythonImportsCheck = [ "bubop" ];
meta = {
description = "Bergercookie's Useful Bits Of Python; helper libraries for Bergercookie's programs";
homepage = "https://github.com/bergercookie/bubop";
changelog = "https://github.com/bergercookie/bubop/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}