nixpkgs/pkgs/development/python-modules/hglib/default.nix

33 lines
766 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, substituteAll, python, nose, mercurial }:
2017-09-16 06:46:27 +02:00
buildPythonPackage rec {
pname = "python-hglib";
2018-06-12 18:47:01 +02:00
version = "2.6.1";
2017-09-16 06:46:27 +02:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:01 +02:00
sha256 = "7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2";
2017-09-16 06:46:27 +02:00
};
patches = [
(substituteAll {
src = ./hgpath.patch;
hg = "${mercurial}/bin/hg";
})
];
2017-09-16 06:46:27 +02:00
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} test.py --with-hg "${mercurial}/bin/hg"
'';
2017-09-16 06:46:27 +02:00
meta = with stdenv.lib; {
description = "Mercurial Python library";
homepage = "http://selenic.com/repo/python-hglib";
license = licenses.mit;
maintainers = with maintainers; [ dfoxfranke ];
platforms = platforms.all;
};
}