about summary refs log tree commit diff
path: root/pkgs/development/python-modules/proglog/default.nix
blob: 3b630f719054d7892eebcefa5fc8e499a56d0cc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchPypi, buildPythonPackage, tqdm }:

buildPythonPackage rec {
  pname = "proglog";
  version = "0.1.10";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-ZYwoycguTK6y8l9Ij/+c6s4i+NabFdDByG1kJ15N2rQ=";
  };

  propagatedBuildInputs = [ tqdm ];

  meta = with lib; {
    description = "Logs and progress bars manager for Python";
    homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog";
    license = licenses.mit;
  };
}