Unverified Commit 9f2b4ca0 authored by natsukium's avatar natsukium
Browse files

python312Packages.ush: switch to pypa builder

parent 0376c8fc
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -4,12 +4,13 @@
  fetchFromGitHub,
  pytestCheckHook,
  six,
  setuptools,
}:

buildPythonPackage rec {
  pname = "ush";
  version = "4.1.0";
  format = "setuptools";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tarruda";
@@ -18,6 +19,10 @@ buildPythonPackage rec {
    hash = "sha256-a6ICbd8647DRtuHl2vs64bsChUjlpuWHV1ipBdFA600=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "ush" ];

  nativeCheckInputs = [
    pytestCheckHook
    six