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

Merge pull request #290712 from fabaff/myuplink-bump

python311Packages.myuplink: 0.3.0 -> 0.4.0
parents 21c9127a 62ba53ff
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

buildPythonPackage rec {
  pname = "myuplink";
  version = "0.3.0";
  version = "0.4.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -17,9 +17,14 @@ buildPythonPackage rec {
    owner = "pajzo";
    repo = "myuplink";
    rev = "refs/tags/${version}";
    hash = "sha256-XDsQmgP3VvWpuZWGBVW5pBsxTRZT2cl3kp1i2sb+LnM=";
    hash = "sha256-xITV5+d/9j8pjfvmnt8RfGHu4lfLu8cMFV0MzURy6hA=";
  };

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace-fail "%%VERSION_NO%%" "${version}"
  '';

  nativeBuildInputs = [
    setuptools
  ];