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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "13diln950wk6nnn4rpmzx37rvrnpa7f803gwygiwbq1q46zwri6q";
  };

  propagatedBuildInputs = [ tqdm ];

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