1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "inotify-simple"; 9 version = "1.3.5"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "inotify_simple"; 14 inherit version; 15 sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44"; 16 }; 17 18 # The package has no tests 19 doCheck = false; 20 21 pythonImportsCheck = [ "inotify_simple" ]; 22 23 meta = with lib; { 24 description = "Simple Python wrapper around inotify"; 25 homepage = "https://github.com/chrisjbillington/inotify_simple"; 26 license = licenses.bsd2; 27 maintainers = with maintainers; [ erikarvstedt ]; 28 }; 29}