Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 545 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, watchdog 5}: 6 7buildPythonPackage rec { 8 pname = "easywatch"; 9 version = "0.0.5"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1b40cjigv7s9qj8hxxy6yhwv0320z7qywrigwgkasgh80q0xgphc"; 14 }; 15 16 propagatedBuildInputs = [ watchdog ]; 17 18 # There are no tests 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Dead-simple way to watch a directory"; 23 homepage = "https://github.com/Ceasar/easywatch"; 24 license = licenses.mit; 25 maintainers = with maintainers; [ fgaz ]; 26 }; 27} 28