Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / proglog / default.nix
blobd22951ac7e2b29a5b6e5d80028d3cc8d13c43193
1 { lib, fetchPypi, buildPythonPackage, tqdm }:
3 buildPythonPackage rec {
4   pname = "proglog";
5   version = "0.1.10";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-ZYwoycguTK6y8l9Ij/+c6s4i+NabFdDByG1kJ15N2rQ=";
10   };
12   propagatedBuildInputs = [ tqdm ];
14   meta = with lib; {
15     description = "Logs and progress bars manager for Python";
16     homepage = "https://github.com/Edinburgh-Genome-Foundry/Proglog";
17     license = licenses.mit;
18   };