blob: f1cc13b44e995f5ba3e043051e4aa9278b5a2e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
django,
pytestCheckHook,
tornado,
six,
}:
buildPythonPackage rec {
pname = "livereload";
version = "2.7.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "lepture";
repo = "python-livereload";
tag = "v${version}";
sha256 = "sha256-WFpPCUjvyGT826EkIuqAB4jcJOEqoohJY9Xw/EJrk6c=";
};
buildInputs = [ django ];
propagatedBuildInputs = [
tornado
six
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [ "test_watch_multiple_dirs" ];
meta = {
description = "Runs a local server that reloads as you develop";
mainProgram = "livereload";
homepage = "https://github.com/lepture/python-livereload";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|