summary refs log blame commit diff
path: root/pkgs/development/python-modules/proglog/default.nix
blob: 9839ea9dd233839a8e817e7098ad9a30d9a0ca29 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                             











                                                                    
                    
                                                              
                                                                     


                           
{ lib, 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;
  };
}