blob: 379447e3578147a613fbf53e1a9f5dd8fe516e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
buildPythonPackage,
fetchPypi,
lib,
hatch-requirements-txt,
natsort,
typing-extensions,
}:
buildPythonPackage rec {
pname = "domdf-python-tools";
version = "3.10.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "domdf_python_tools";
hash = "sha256-KuMI0vTx6RRfX0ulf4QPv9HCmD7ibkgkNHeJZJ064pg=";
};
build-system = [ hatch-requirements-txt ];
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 ];
};
}
|