Unverified Commit 8ca4b12d authored by Thiago Kenji Okada's avatar Thiago Kenji Okada Committed by GitHub
Browse files

Merge pull request #279411 from khaneliman/dooit

python3Packages.textual: 0.41.0 -> 0.47.1 and dooit: 2.1.0 -> 2.1.1
parents 42ac8b8e d5d30125
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage rec {
  pname = "textual";
  version = "0.41.0";
  version = "0.47.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
    owner = "Textualize";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-K3JpAVkw6njUT2AGGLL3ACagPK0K6Ny4PvCsbmuNvTo=";
    hash = "sha256-RFaZKQ+0o6ZvfZxx95a1FjSHVJ0VOIAfzkdxYQXYBKU=";
  };

  nativeBuildInputs = [
+2 −8
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "dooit";
  version = "2.1.0";
  version = "2.1.1";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "kraanzu";
    repo = "dooit";
    rev = "v${version}";
    hash = "sha256-ZCEBpaQHaFb09MUlN6acYB3LrfX456uRbhVh9YPz7NU=";
    hash = "sha256-YfWfh8oDZSG1DdAV+hzchqyNSSqyeNR5SSEa9B5yGY8=";
  };

  nativeBuildInputs = with python3.pkgs; [
@@ -30,12 +30,6 @@ python3.pkgs.buildPythonApplication rec {
    tzlocal
  ];

  # NOTE pyproject version was bumped after release tag 2.0.1 - remove after next release.
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace "version = \"2.0.0\"" "version = \"2.0.1\""
  '';

  # No tests available
  doCheck = false;