pythonPackages.cmdline: init at 0.1.6
This commit is contained in:
parent
f5ce76c6d8
commit
6f1d7d67c0
1 changed files with 19 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue