about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hcs-utils/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hcs-utils/default.nix')
-rw-r--r--pkgs/development/python-modules/hcs-utils/default.nix24
1 files changed, 16 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/hcs-utils/default.nix b/pkgs/development/python-modules/hcs-utils/default.nix
index 2dc90870b6143..a69622a440d4f 100644
--- a/pkgs/development/python-modules/hcs-utils/default.nix
+++ b/pkgs/development/python-modules/hcs-utils/default.nix
@@ -1,4 +1,11 @@
-{ lib, pythonOlder, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  six,
+  glibcLocales,
+  pytest,
+}:
 
 buildPythonPackage rec {
   pname = "hcs-utils";
@@ -11,23 +18,24 @@ buildPythonPackage rec {
     sha256 = "04xq69hrys8lf9kp8pva0c4aphjjfw412km7c32ydkwq0i59rhp2";
   };
 
-  LC_ALL="en_US.UTF-8";
+  LC_ALL = "en_US.UTF-8";
 
   checkPhase = ''
     # root does not has /root as home in sandbox
     py.test -k 'not test_expand' hcs_utils/test
   '';
 
-  buildInputs = [ six glibcLocales ];
+  buildInputs = [
+    six
+    glibcLocales
+  ];
   nativeCheckInputs = [ pytest ];
 
-  disabled = pythonOlder "3.4";
-
   meta = with lib; {
     description = "Library collecting some useful snippets";
-    homepage    = "https://pypi.python.org/pypi/hcs_utils/1.3";
-    license     = licenses.isc;
+    homepage = "https://pypi.python.org/pypi/hcs_utils/1.3";
+    license = licenses.isc;
     maintainers = with maintainers; [ lovek323 ];
-    platforms   = platforms.unix;
+    platforms = platforms.unix;
   };
 }