about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tbm-utils
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-04-02 00:24:23 -0700
committerJon <jonringer@users.noreply.github.com>2020-04-02 10:04:28 -0700
commitf329b29cb8a7856169b91a08a4b7ff8639d3793a (patch)
tree5b6f6f210409eb96223cc603196b3c0e9f6b541c /pkgs/development/python-modules/tbm-utils
parent9c1222aa018428afee7b6b7f5d4c70710ef40959 (diff)
python3Packages.tbm-utils: 1.0.0 -> 2.5.0
Diffstat (limited to 'pkgs/development/python-modules/tbm-utils')
-rw-r--r--pkgs/development/python-modules/tbm-utils/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/tbm-utils/default.nix b/pkgs/development/python-modules/tbm-utils/default.nix
index f0593ba1bcce2..5c63121812a66 100644
--- a/pkgs/development/python-modules/tbm-utils/default.nix
+++ b/pkgs/development/python-modules/tbm-utils/default.nix
@@ -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 ];
   };
 
 }