pythonPackages: add dotfiles, dotfile manager

This commit is contained in:
Jaka Hudoklin 2014-09-10 12:22:14 +02:00
parent 624efa4224
commit 00f9015b34

View file

@ -1912,6 +1912,23 @@ rec {
};
};
dotfiles = buildPythonPackage rec {
name = "dotfiles-0.6.3";
src = fetchurl {
url = "https://pypi.python.org/packages/source/d/dotfiles/${name}.tar.gz";
md5 = "95a0792eb92a8fc0db8a7e59389470fe";
};
doCheck = true;
meta = {
description = "Easily manage your dotfiles";
homepage = https://github.com/jbernard/dotfiles;
license = licenses.isc;
};
};
dpkt = buildPythonPackage rec {
name = "dpkt-1.8";
disabled = isPy3k;