1{ lib, fetchPypi, buildPythonPackage, tqdm }:
2
3buildPythonPackage rec {
4 pname = "proglog";
5 version = "0.1.10";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-ZYwoycguTK6y8l9Ij/+c6s4i+NabFdDByG1kJ15N2rQ=";
10 };
11
12 propagatedBuildInputs = [ tqdm ];
13
14 meta = with lib; {
15 description = "Logs and progress bars manager for Python";
16 homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog";
17 license = licenses.mit;
18 };
19}