fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
738 B
Nix
37 lines
738 B
Nix
{
|
||
lib,
|
||
buildPythonPackage,
|
||
fetchPypi,
|
||
mercurial,
|
||
nose,
|
||
}:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "python-hglib";
|
||
version = "2.6.2";
|
||
format = "setuptools";
|
||
|
||
src = fetchPypi {
|
||
inherit pname version;
|
||
hash = "sha256-sYvR7VPJDuV9VxTWata7crZOkw1K7KmDCJLAi7KNpgg=";
|
||
};
|
||
|
||
nativeCheckInputs = [
|
||
mercurial
|
||
nose
|
||
];
|
||
|
||
preCheck = ''
|
||
export HGTMP=$(mktemp -d)
|
||
export HGUSER=test
|
||
'';
|
||
|
||
pythonImportsCheck = [ "hglib" ];
|
||
|
||
meta = with lib; {
|
||
description = "Library with a fast, convenient interface to Mercurial. It uses Mercurial’s command server for communication with hg.";
|
||
homepage = "https://www.mercurial-scm.org/wiki/PythonHglibs";
|
||
license = licenses.mit;
|
||
maintainers = [ ];
|
||
};
|
||
}
|