pythonPackages.hg-git: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
4d25c10bff
commit
99d1456df7
27
pkgs/development/python-modules/hg-git/default.nix
Normal file
27
pkgs/development/python-modules/hg-git/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user