blob: fa36e6e0c471823b5021daa43978d49e6062ea89 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
anyio,
}:
buildPythonPackage rec {
pname = "watchgod";
version = "0.8.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-yxH/ZmV777qU2CjjtiLV+3byL72hN281Xz5uUel9lFA=";
};
propagatedBuildInputs = [ anyio ];
# no tests in release
doCheck = false;
pythonImportsCheck = [ "watchgod" ];
meta = {
description = "Simple, modern file watching and code reload in python";
mainProgram = "watchgod";
homepage = "https://github.com/samuelcolvin/watchgod";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|