summary refs log tree commit diff
path: root/pkgs/development/python-modules/hcs_utils/default.nix
blob: 51d42e5c8b73690b699ebd173d81f4edb0934208 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, pythonOlder, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:

buildPythonPackage rec {
  pname = "hcs_utils";
  version = "2.0";

  src = fetchPypi {
    inherit pname 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 ];
  checkInputs = [ pytest ];

  disabled = pythonOlder "3.4";

  meta = with stdenv.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;
  };
}