fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
41 lines
807 B
Nix
41 lines
807 B
Nix
{
|
|
lib,
|
|
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 ];
|
|
|
|
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;
|
|
};
|
|
}
|