Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 548 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "inotify-simple"; 5 version = "1.2.1"; 6 7 src = fetchPypi { 8 pname = "inotify_simple"; 9 inherit version; 10 sha256 = "132craajflksgxxwjawj73nn1ssv8jn58j3k5vvyiq03avbz4sfv"; 11 }; 12 13 # The package has no tests 14 doCheck = false; 15 16 meta = with lib; { 17 description = "A simple Python wrapper around inotify"; 18 homepage = "https://github.com/chrisjbillington/inotify_simple"; 19 license = licenses.bsd2; 20 maintainers = with maintainers; [ earvstedt ]; 21 }; 22}