python3Packages.tbm-utils: 1.0.0 -> 2.5.0

This commit is contained in:
Jonathan Ringer 2020-04-02 00:24:23 -07:00 committed by Jon
parent 9c1222aa01
commit f329b29cb8

View File

@ -10,28 +10,23 @@
buildPythonPackage rec {
pname = "tbm-utils";
version = "1.0.0";
version = "2.5.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "08fb86b5ab469bafdbef19751abb6dc1e08a3043c373ea915e1b6e20d023b529";
sha256 = "02bmra9f0p1irhbrklxk9nhkvgwkn8042hx7z6c00qlhac1wlba2";
};
postPatch = ''
substituteInPlace setup.py --replace ",<19.3" ""
'';
propagatedBuildInputs = [ attrs pendulum pprintpp wrapt ];
# No tests in archive.
doCheck = false;
disabled = pythonOlder "3.6";
propagatedBuildInputs = [ attrs pendulum pprintpp wrapt ];
meta = {
homepage = https://github.com/thebigmunch/tbm-utils;
license = with lib.licenses; [ mit ];
description = "A commonly-used set of utilities";
homepage = "https://github.com/thebigmunch/tbm-utils";
license = with lib.licenses; [ mit ];
};
}