1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "watchgod";
8 version = "0.7";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0aagm0n5fkpzdsfgl0r21gkz5qaicgq3f4rqz2fdvsgbn1i0s528";
13 };
14
15 # no tests in release
16 doCheck = false;
17
18 pythonImportsCheck = [ "watchgod" ];
19
20 meta = with lib; {
21 description = "Simple, modern file watching and code reload in python";
22 homepage = "https://github.com/samuelcolvin/watchgod";
23 license = licenses.mit;
24 maintainers = with maintainers; [ globin ];
25 };
26
27}