pythonPackages.hg-git: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 14:12:38 -04:00 committed by Frederik Rietdijk
parent 4d25c10bff
commit 99d1456df7
2 changed files with 28 additions and 19 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, dulwich
, isPy3k
}:
buildPythonPackage rec {
pname = "hg-git";
version = "0.8.11";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "08kw1sj3sq1q1571hwkc51w20ks9ysmlg93pcnmd6gr66bz02dyn";
};
propagatedBuildInputs = [ dulwich ];
meta = with stdenv.lib; {
description = "Push and pull from a Git server using Mercurial";
homepage = http://hg-git.github.com/;
maintainers = with maintainers; [ koral ];
license = stdenv.lib.licenses.gpl2;
};
}

View file

@ -2336,25 +2336,7 @@ in {
inherit (pkgs) git glibcLocales;
};
hg-git = buildPythonPackage rec {
name = "hg-git-${version}";
version = "0.8.11";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/h/hg-git/${name}.tar.gz";
sha256 = "08kw1sj3sq1q1571hwkc51w20ks9ysmlg93pcnmd6gr66bz02dyn";
};
propagatedBuildInputs = with self; [ dulwich ];
meta = {
description = "Push and pull from a Git server using Mercurial";
homepage = http://hg-git.github.com/;
maintainers = with maintainers; [ koral ];
license = stdenv.lib.licenses.gpl2;
};
};
hg-git = callPackage ../development/python-modules/hg-git { };
dtopt = buildPythonPackage rec {
name = "dtopt-0.1";