pythonPackages.livereload: init at 2.5.0

This commit is contained in:
Adam Beckmeyer 2016-12-23 08:17:04 -05:00
parent 94fbbb2ed6
commit 4ae23aaf3c

View File

@ -13825,6 +13825,28 @@ in {
};
};
livereload = buildPythonPackage rec {
name = "livereload-${version}";
version = "2.5.0";
src = pkgs.fetchFromGitHub {
owner = "lepture";
repo = "python-livereload";
rev = "v${version}";
sha256 = "0ixsc7wibmkfk9fnyq0d1b5d9snxfpzzzgsxvq28rn54v6q8b7m2";
};
buildInputs = with self; [ nose django ];
propagatedBuildInputs = with self; [ tornado six ];
meta = {
description = "Runs a local server that reloads as you develop";
homepage = "https://github.com/lepture/python-livereload";
license = licenses.bsd3;
};
};
llfuse = buildPythonPackage rec {
name = "llfuse-1.0";