Unverified Commit 67c28dc9 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.ush: 3.1.0 -> 4.1.0 (#353647)

parents e41ec4f2 9f2b4ca0
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -4,20 +4,25 @@
  fetchFromGitHub,
  pytestCheckHook,
  six,
  setuptools,
}:

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

  src = fetchFromGitHub {
    owner = "tarruda";
    repo = "python-ush";
    rev = version;
    hash = "sha256-eL3vG3yS02enbLYorKvvYKbju9HInffUhrZgkodwhvo=";
    hash = "sha256-a6ICbd8647DRtuHl2vs64bsChUjlpuWHV1ipBdFA600=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "ush" ];

  nativeCheckInputs = [
    pytestCheckHook
    six