hglib: init at 1.7

+18
+18
pkgs/top-level/python-packages.nix
··· 3698 3698 }; 3699 3699 }; 3700 3700 3701 + hglib = buildPythonPackage rec { 3702 + version = "1.7"; 3703 + name = "hglib-${version}"; 3704 + 3705 + src = pkgs.fetchurl { 3706 + url = "https://pypi.python.org/packages/source/p/python-hglib/python-hglib-${version}.tar.gz"; 3707 + sha256 = "0dc087d15b774cda82d3c8096fb0e514caeb2ddb60eed38e9056b16e279ba3c5"; 3708 + }; 3709 + 3710 + meta = { 3711 + description = "Mercurial Python library"; 3712 + homepage = "http://selenic.com/repo/python-hglib"; 3713 + license = licenses.mit; 3714 + maintainers = with maintainers; [ dfoxfranke ]; 3715 + platforms = platforms.all; 3716 + }; 3717 + }; 3718 + 3701 3719 humanize = buildPythonPackage rec { 3702 3720 version = "0.5.1"; 3703 3721 name = "humanize-${version}";