2ec8c500f1
This commit was automatically generated using update-python-libraries.
33 lines
665 B
Nix
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 ];
|
|
};
|
|
}
|