Merge pull request #167450 from r-ryantm/auto-update/python310Packages.hg-git

python310Packages.hg-git: 0.10.4 -> 1.0.0
This commit is contained in:
Fabian Affolter 2022-04-06 12:34:27 +02:00 committed by GitHub
commit 6c4793f0bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,24 +3,34 @@
, fetchPypi
, dulwich
, mercurial
, pythonOlder
}:
buildPythonPackage rec {
pname = "hg-git";
version = "0.10.4";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-guJlIm9HPTgKw5cg/s7rFST/crAXfPxGYGeZxEJ+hcw=";
hash = "sha256-ORGDOWLrnImca+qPtJZmyC8hGxJNCEC+tq2V4jpGIbY=";
};
propagatedBuildInputs = [ dulwich mercurial ];
propagatedBuildInputs = [
dulwich
mercurial
];
pythonImportsCheck = [
"hggit"
];
meta = with lib; {
description = "Push and pull from a Git server using Mercurial";
homepage = "https://hg-git.github.io/";
maintainers = with maintainers; [ koral ];
license = licenses.gpl2Only;
maintainers = with maintainers; [ koral ];
};
}