Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / hcs_utils / default.nix
blob4e6931f0e339f5f9642e4230a160c7698e4d56a1
1 { lib, pythonOlder, buildPythonPackage, fetchPypi, six, glibcLocales, pytest }:
3 buildPythonPackage rec {
4   pname = "hcs_utils";
5   version = "2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "04xq69hrys8lf9kp8pva0c4aphjjfw412km7c32ydkwq0i59rhp2";
10   };
12   LC_ALL="en_US.UTF-8";
14   checkPhase = ''
15     # root does not has /root as home in sandbox
16     py.test -k 'not test_expand' hcs_utils/test
17   '';
19   buildInputs = [ six glibcLocales ];
20   nativeCheckInputs = [ pytest ];
22   disabled = pythonOlder "3.4";
24   meta = with lib; {
25     description = "Library collecting some useful snippets";
26     homepage    = "https://pypi.python.org/pypi/hcs_utils/1.3";
27     license     = licenses.isc;
28     maintainers = with maintainers; [ lovek323 ];
29     platforms   = platforms.unix;
30   };