depot/third_party/nixpkgs/pkgs/development/python-modules/proglog/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

19 lines
473 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, tqdm }:
buildPythonPackage rec {
pname = "proglog";
version = "0.1.9";
src = fetchPypi {
inherit pname version;
sha256 = "13diln950wk6nnn4rpmzx37rvrnpa7f803gwygiwbq1q46zwri6q";
};
propagatedBuildInputs = [ tqdm ];
meta = with stdenv.lib; {
description = "Logs and progress bars manager for Python";
homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog";
license = licenses.mit;
};
}