Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, inotify-simple 5}: 6 7buildPythonPackage rec { 8 pname = "inotifyrecursive"; 9 version = "0.3.5"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4="; 14 }; 15 16 propagatedBuildInputs = [ inotify-simple ]; 17 18 # No tests included 19 doCheck = false; 20 pythonImportsCheck = [ pname ]; 21 22 meta = with lib; { 23 description = "Simple recursive inotify watches for Python"; 24 homepage = "https://github.com/letorbi/inotifyrecursive"; 25 license = licenses.lgpl3Plus; 26 maintainers = with maintainers; [ Flakebi ]; 27 }; 28}