44 lines
742 B
Nix
44 lines
742 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
setuptools,
|
||
|
setuptools-scm,
|
||
|
dulwich,
|
||
|
mercurial,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "hg-git";
|
||
|
version = "1.1.3";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
pname = "hg_git";
|
||
|
inherit version;
|
||
|
hash = "sha256-lqnCi4MjdPVCIXdYAIDGdRY5zcU5QPrSHzy+NKysMtc=";
|
||
|
};
|
||
|
|
||
|
build-system = [
|
||
|
setuptools
|
||
|
setuptools-scm
|
||
|
];
|
||
|
|
||
|
dependencies = [
|
||
|
dulwich
|
||
|
mercurial
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "hggit" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Push and pull from a Git server using Mercurial";
|
||
|
homepage = "https://hg-git.github.io/";
|
||
|
license = licenses.gpl2Only;
|
||
|
maintainers = with maintainers; [ koral ];
|
||
|
};
|
||
|
}
|