Unverified Commit 8a1266b3 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.asyncinotify: modernize

parent 36b3d4ae
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
  fetchFromGitHub,
  flit-core,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
@@ -12,8 +11,6 @@ buildPythonPackage rec {
  version = "4.3.2";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "absperf";
    repo = "asyncinotify";
@@ -37,7 +34,7 @@ buildPythonPackage rec {
    ];
    description = "Module for inotify";
    homepage = "https://github.com/absperf/asyncinotify/";
    changelog = "https://github.com/absperf/asyncinotify/releases/tag/v${version}";
    changelog = "https://github.com/absperf/asyncinotify/releases/tag/${src.tag}";
    license = licenses.mpl20;
    maintainers = with maintainers; [ cynerd ];
  };