python3Packages.python-hglib: init at 2.6.1
This is required for glean-sdk python module. It uses 2.6.1 specifically. We'd need to relax the requirement and update it to 2.6.2 later.
This commit is contained in:
parent
d6fe39ecc2
commit
634d44ab55
1 changed files with 29 additions and 0 deletions
29
pkgs/development/python-modules/python-hglib/default.nix
Normal file
29
pkgs/development/python-modules/python-hglib/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib
|
||||||
|
, python3Packages
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "python-hglib";
|
||||||
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1741686
|
||||||
|
version = "2.6.1";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-fB+gy00zLdbshAmwR4fOukYj6X+zeGVvfKsLmWxso7I=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
];
|
||||||
|
|
||||||
|
# attempts to create a temporary `HGTMP` folder
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
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 = [ maintainers.kvark ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue