nixpkgs/pkgs/development/python-modules/tbm-utils/default.nix

33 lines
600 B
Nix
Raw Normal View History

2019-10-27 14:53:49 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, attrs
, pendulum
, pprintpp
, wrapt
, pythonOlder
}:
buildPythonPackage rec {
pname = "tbm-utils";
version = "2.5.0";
disabled = pythonOlder "3.6";
2019-10-27 14:53:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "02bmra9f0p1irhbrklxk9nhkvgwkn8042hx7z6c00qlhac1wlba2";
2019-10-27 14:53:49 +00:00
};
propagatedBuildInputs = [ attrs pendulum pprintpp wrapt ];
2019-10-27 14:53:49 +00:00
# No tests in archive.
doCheck = false;
meta = {
description = "A commonly-used set of utilities";
homepage = "https://github.com/thebigmunch/tbm-utils";
license = with lib.licenses; [ mit ];
2019-10-27 14:53:49 +00:00
};
}