Files
nixpkgs/pkgs/development/python-modules/inotify-simple/default.nix
T
Martin Weinelt 2ec8c500f1 python3Packages.inotify-simple: 1.3.5 -> 2.0.1
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:19 +01:00

33 lines
665 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "inotify-simple";
version = "2.0.1";
pyproject = true;
src = fetchPypi {
pname = "inotify_simple";
inherit version;
hash = "sha256-8BC7vYKDvXGp9Ost6UdlgE7eJL1HMgsObvQTblQc3Cw=";
};
build-system = [ setuptools ];
# The package has no tests
doCheck = false;
pythonImportsCheck = [ "inotify_simple" ];
meta = {
description = "Simple Python wrapper around inotify";
homepage = "https://github.com/chrisjbillington/inotify_simple";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ erikarvstedt ];
};
}