pythonPackages.cmdline: init at 0.1.6

This commit is contained in:
Frederik Rietdijk 2016-08-30 11:57:26 +02:00
parent f5ce76c6d8
commit 6f1d7d67c0

View File

@ -3597,6 +3597,25 @@ in modules // {
};
};
cmdline = buildPythonPackage rec {
pname = "cmdline";
version = "0.1.6";
name = "${pname}-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/c/${pname}/${name}.tar.gz";
sha256 = "be2cb4711e9111bb7386a408e3c66a730c36dd6ac05851a9f03d0f4eae63536a";
};
# No tests, https://github.com/rca/cmdline/issues/1
doCheck = false;
propagatedBuildInputs = with self; [ pyyaml ];
meta = {
description = "Utilities for consistent command line tools";
homepage = http://github.com/rca/cmdline;
license = licenses.asl20;
};
};
cogapp = buildPythonPackage rec {
version = "2.3";