Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / watchgod / default.nix
blob988fb53601b9f4a0c0008a4a41aaee1695b26e33
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , anyio
5 }:
7 buildPythonPackage rec {
8   pname = "watchgod";
9   version = "0.8.2";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-yxH/ZmV777qU2CjjtiLV+3byL72hN281Xz5uUel9lFA=";
15   };
17   propagatedBuildInputs = [
18     anyio
19   ];
21   # no tests in release
22   doCheck = false;
24   pythonImportsCheck = [ "watchgod" ];
26   meta = with lib; {
27     description = "Simple, modern file watching and code reload in python";
28     mainProgram = "watchgod";
29     homepage = "https://github.com/samuelcolvin/watchgod";
30     license = licenses.mit;
31     maintainers = with maintainers; [ globin ];
32   };