ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / watchgod / default.nix
blob80d95b3175f672813466a3882d9549f120cc22ab
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , anyio
5 }:
7 buildPythonPackage rec {
8   pname = "watchgod";
9   version = "0.8.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-yxH/ZmV777qU2CjjtiLV+3byL72hN281Xz5uUel9lFA=";
14   };
16   propagatedBuildInputs = [
17     anyio
18   ];
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     homepage = "https://github.com/samuelcolvin/watchgod";
28     license = licenses.mit;
29     maintainers = with maintainers; [ globin ];
30   };