2024-07-17 22:44:19 +02:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lib,
|
2025-04-01 07:13:44 +02:00
|
|
|
hatch-requirements-txt,
|
2024-07-17 22:44:19 +02:00
|
|
|
natsort,
|
|
|
|
typing-extensions,
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "domdf-python-tools";
|
2025-04-01 07:13:44 +02:00
|
|
|
version = "3.10.0";
|
2024-07-17 22:44:19 +02:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "domdf_python_tools";
|
2025-04-01 07:13:44 +02:00
|
|
|
hash = "sha256-KuMI0vTx6RRfX0ulf4QPv9HCmD7ibkgkNHeJZJ064pg=";
|
2024-07-17 22:44:19 +02:00
|
|
|
};
|
|
|
|
|
2025-04-01 07:13:44 +02:00
|
|
|
build-system = [ hatch-requirements-txt ];
|
2024-07-17 22:44:19 +02:00
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
natsort
|
|
|
|
typing-extensions
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Helpful functions for Python";
|
|
|
|
homepage = "https://github.com/domdfcoding/domdf_python_tools";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ tyberius-prime ];
|
|
|
|
};
|
|
|
|
}
|