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

python3Packages.asyncinotify: 4.2.1 -> 4.3.2 (#464287)

parents f8fb59c7 8a1266b3
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -4,21 +4,18 @@
  fetchFromGitHub,
  flit-core,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "asyncinotify";
  version = "4.2.1";
  version = "4.3.2";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "absperf";
    repo = "asyncinotify";
    tag = "v${version}";
    hash = "sha256-X7R35LyrJaGJ70Houenpag0IMbqdsh+Sg9wMdzZmGfk=";
    hash = "sha256-lIy9hZhTdXPt9gJGPDtfLttYQL8OiWfNcz3rT89QS7M=";
  };

  build-system = [ flit-core ];
@@ -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 ];
  };