summary refs log tree commit diff
path: root/pkgs/development/python-modules/hglib/default.nix
blob: aa8c051aed3c2b3a756bac5d89db76efdab4881e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildPythonPackage, fetchPypi, nose, mercurial, isPy3k }:

buildPythonPackage rec {
  pname = "python-hglib";
  version = "2.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2";
  };

  checkInputs = [ nose ];
  buildInputs = [ mercurial ];

  checkPhase = ''python test.py'';
  doCheck = if isPy3k then false else true;

  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;
  };
}