python.pkgs.tbm-utils: init at 1.0.0
This commit is contained in:
parent
ad90efb0d7
commit
311f17970f
37
pkgs/development/python-modules/tbm-utils/default.nix
Normal file
37
pkgs/development/python-modules/tbm-utils/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, attrs
|
||||
, pendulum
|
||||
, pprintpp
|
||||
, wrapt
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tbm-utils";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "08fb86b5ab469bafdbef19751abb6dc1e08a3043c373ea915e1b6e20d023b529";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace ",<19.3" ""
|
||||
'';
|
||||
|
||||
# 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";
|
||||
};
|
||||
|
||||
}
|
@ -5015,7 +5015,7 @@ in {
|
||||
sphinxcontrib-devhelp = callPackage ../development/python-modules/sphinxcontrib-devhelp {};
|
||||
|
||||
sphinxcontrib-htmlhelp = callPackage ../development/python-modules/sphinxcontrib-htmlhelp {};
|
||||
|
||||
|
||||
sphinxcontrib-jsmath = callPackage ../development/python-modules/sphinxcontrib-jsmath {};
|
||||
|
||||
sphinxcontrib-qthelp = callPackage ../development/python-modules/sphinxcontrib-qthelp {};
|
||||
@ -5065,6 +5065,8 @@ in {
|
||||
|
||||
tasklib = callPackage ../development/python-modules/tasklib { };
|
||||
|
||||
tbm-utils = callPackage ../development/python-modules/tbm-utils { };
|
||||
|
||||
tempita = callPackage ../development/python-modules/tempita { };
|
||||
|
||||
terminado = callPackage ../development/python-modules/terminado { };
|
||||
|
Loading…
Reference in New Issue
Block a user