about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix b/nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix
new file mode 100644
index 000000000000..2dc90870b614
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/hcs-utils/default.nix
@@ -0,0 +1,33 @@
+{ lib, pythonOlder, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:
+
+buildPythonPackage rec {
+  pname = "hcs-utils";
+  version = "2.0";
+  format = "setuptools";
+
+  src = fetchPypi {
+    pname = "hcs_utils";
+    inherit version;
+    sha256 = "04xq69hrys8lf9kp8pva0c4aphjjfw412km7c32ydkwq0i59rhp2";
+  };
+
+  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 ];
+  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;
+    maintainers = with maintainers; [ lovek323 ];
+    platforms   = platforms.unix;
+  };
+}