3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request from non-Jedi/pythonPackages.livereload

pythonPackages.livereload: init at 2.5.0
This commit is contained in:
Michael Raskin 2017-03-18 17:48:03 +01:00 committed by GitHub
commit 4047619e05

View file

@ -14003,6 +14003,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";