blob: 81afce1e65edd665a5dd51792b60c0e43442c825 (
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
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
tqdm,
}:
buildPythonPackage rec {
pname = "proglog";
version = "0.1.12";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Nh7gdHIcJ3uJt1wGEzbLjF8ofJKwQ++lYsz3hmzakxw=";
};
build-system = [ setuptools ];
dependencies = [ tqdm ];
meta = {
description = "Logs and progress bars manager for Python";
homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog";
license = lib.licenses.mit;
};
}
|