Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hcs-utils / default.nix
blob2dc90870b6143074e738442c3f3b2370b069de58
1 { lib, pythonOlder, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:
3 buildPythonPackage rec {
4   pname = "hcs-utils";
5   version = "2.0";
6   format = "setuptools";
8   src = fetchPypi {
9     pname = "hcs_utils";
10     inherit version;
11     sha256 = "04xq69hrys8lf9kp8pva0c4aphjjfw412km7c32ydkwq0i59rhp2";
12   };
14   LC_ALL="en_US.UTF-8";
16   checkPhase = ''
17     # root does not has /root as home in sandbox
18     py.test -k 'not test_expand' hcs_utils/test
19   '';
21   buildInputs = [ six glibcLocales ];
22   nativeCheckInputs = [ pytest ];
24   disabled = pythonOlder "3.4";
26   meta = with lib; {
27     description = "Library collecting some useful snippets";
28     homepage    = "https://pypi.python.org/pypi/hcs_utils/1.3";
29     license     = licenses.isc;
30     maintainers = with maintainers; [ lovek323 ];
31     platforms   = platforms.unix;
32   };