anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / watchgod / default.nix
blob10b93b346dd11abc6fe7704986c5d1bb3aec50e1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   anyio,
6 }:
8 buildPythonPackage rec {
9   pname = "watchgod";
10   version = "0.8.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-yxH/ZmV777qU2CjjtiLV+3byL72hN281Xz5uUel9lFA=";
16   };
18   propagatedBuildInputs = [ anyio ];
20   # no tests in release
21   doCheck = false;
23   pythonImportsCheck = [ "watchgod" ];
25   meta = with lib; {
26     description = "Simple, modern file watching and code reload in python";
27     mainProgram = "watchgod";
28     homepage = "https://github.com/samuelcolvin/watchgod";
29     license = licenses.mit;
30     maintainers = with maintainers; [ globin ];
31   };