Unverified Commit 282668a6 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python313Packages.pushover-complete: fix and modernize build

parent ddece3e6
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy27,
  setuptools,
  requests,
  six,
  pytestCheckHook,
@@ -13,16 +13,17 @@
buildPythonPackage rec {
  pname = "pushover-complete";
  version = "1.2.0";
  format = "setuptools";
  disabled = isPy27;
  pyproject = true;

  src = fetchPypi {
    pname = "pushover_complete";
    inherit version;
    sha256 = "sha256-v0+JgShJMEdVXJ1xZD4UCKZzgV+uOuOstPn3nWtHDJw=";
    hash = "sha256-v0+JgShJMEdVXJ1xZD4UCKZzgV+uOuOstPn3nWtHDJw=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    requests
    six
  ];