755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
30 lines
627 B
Nix
30 lines
627 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "inotify-simple";
|
|
version = "1.3.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "inotify_simple";
|
|
inherit version;
|
|
sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44";
|
|
};
|
|
|
|
# The package has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "inotify_simple" ];
|
|
|
|
meta = with lib; {
|
|
description = "Simple Python wrapper around inotify";
|
|
homepage = "https://github.com/chrisjbillington/inotify_simple";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ erikarvstedt ];
|
|
};
|
|
}
|