2018-12-21 17:25:04 +00:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
, watchdog
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "easywatch";
|
|
|
|
version = "0.0.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1b40cjigv7s9qj8hxxy6yhwv0320z7qywrigwgkasgh80q0xgphc";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ watchdog ];
|
|
|
|
|
|
|
|
# There are no tests
|
|
|
|
doCheck = false;
|
2021-02-16 21:38:08 +00:00
|
|
|
pythonImportsCheck = [ "easywatch" ];
|
2018-12-21 17:25:04 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Dead-simple way to watch a directory";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Ceasar/easywatch";
|
2018-12-21 17:25:04 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fgaz ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|