mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-15 12:30:26 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
33 lines
697 B
Nix
33 lines
697 B
Nix
{ lib
|
||
, buildPythonPackage
|
||
, fetchPypi
|
||
, mercurial
|
||
, nose
|
||
}:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "python-hglib";
|
||
version = "2.6.2";
|
||
|
||
src = fetchPypi {
|
||
inherit pname version;
|
||
sha256 = "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 = [];
|
||
};
|
||
}
|