My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/proglog/default.nix

19 lines
463 B

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