pythonPackages.helper: init at 2.4.1

This commit is contained in:
Frederik Rietdijk 2016-08-30 11:39:38 +02:00
parent ad633d39dd
commit 53e9993f4e

View File

@ -6837,6 +6837,31 @@ in modules // {
};
};
helper = buildPythonPackage rec {
pname = "helper";
version = "2.4.1";
name = "${pname}-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/h/${pname}/${name}.tar.gz";
sha256 = "4e33dde42ad4df30fb7790689f93d77252cff26a565610d03ff2e434865a53a2";
};
buildInputs = with self; [ mock ];
propagatedBuildInputs = with self; [ pyyaml ];
# No tests
doCheck = false;
meta = {
description = "Development library for quickly writing configurable applications and daemons";
homepage = https://helper.readthedocs.org/;
license = licenses.bsd3;
};
};
hglib = buildPythonPackage rec {
version = "1.7";
name = "hglib-${version}";