Commit 8153410c authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.aiomultiprocess: refactor

parent e4a89cc9
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -9,17 +9,18 @@
buildPythonPackage rec {
  pname = "aiomultiprocess";
  version = "0.9.1";
  format = "pyproject";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "omnilib";
    repo = pname;
    rev = "v${version}";
    repo = "aiomultiprocess";
    rev = "refs/tags/v${version}";
    hash = "sha256-LWrAr3i2CgOMZFxWi9B3kiou0UtaHdDbpkr6f9pReRA=";
  };

  nativeBuildInputs = [ flit-core ];
  build-system = [ flit-core ];

  nativeCheckInputs = [ pytestCheckHook ];