ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / easywatch / default.nix
blob36f3ea0de6efa4f9ed8bc6570675405624036042
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , watchdog
5 }:
7 buildPythonPackage rec {
8   pname = "easywatch";
9   version = "0.0.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1b40cjigv7s9qj8hxxy6yhwv0320z7qywrigwgkasgh80q0xgphc";
14   };
16   propagatedBuildInputs = [ watchdog ];
18   # There are no tests
19   doCheck = false;
20   pythonImportsCheck = [ "easywatch" ];
22   meta = with lib; {
23     description = "Dead-simple way to watch a directory";
24     homepage = "https://github.com/Ceasar/easywatch";
25     license = licenses.mit;
26     maintainers = with maintainers; [ fgaz ];
27   };