02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
20 lines
486 B
Nix
20 lines
486 B
Nix
{ lib, fetchPypi, buildPythonPackage, tqdm }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "proglog";
|
|
version = "0.1.10";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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;
|
|
};
|
|
}
|