Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hg-git / default.nix
blob86145ee03ab4d12aa6bf0cd14254d5d9b32ab5ec
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools-scm
5 , dulwich
6 , mercurial
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "hg-git";
12   version = "1.1.1";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-r04Q6zbt8VM1jYkoGOdJZqKPPxXy4jC1X1d9nJ+fEWY=";
20   };
22   nativeBuildInputs = [
23     setuptools-scm
24   ];
26   propagatedBuildInputs = [
27     dulwich
28     mercurial
29   ];
31   pythonImportsCheck = [
32     "hggit"
33   ];
35   meta = with lib; {
36     description = "Push and pull from a Git server using Mercurial";
37     homepage = "https://hg-git.github.io/";
38     license = licenses.gpl2Only;
39     maintainers = with maintainers; [ koral ];
40   };