Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 546 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "inotify-simple"; 5 version = "1.1.8"; 6 7 src = fetchPypi { 8 pname = "inotify_simple"; 9 inherit version; 10 sha256 = "1pfqvnynwh318cakldhg7535kbs02asjsgv6s0ki12i7fgfi0b7w"; 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}