about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyppeteer
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-08-15 14:50:05 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-08-15 14:50:05 +0200
commit225d62caec46adf2511e2979b6566919a5644e00 (patch)
tree9bae9c3db1fb0f6f34d32c4192a2a0b31d0fab10 /pkgs/development/python-modules/pyppeteer
parent62e97c51a641c88498a5c24df4a00610156f2738 (diff)
python3Packages.pyppeteer: 0.2.5 -> 0.2.6
Diffstat (limited to 'pkgs/development/python-modules/pyppeteer')
-rw-r--r--pkgs/development/python-modules/pyppeteer/default.nix20
1 files changed, 2 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pyppeteer/default.nix b/pkgs/development/python-modules/pyppeteer/default.nix
index 6da76a5cdba55..37a40f867bda9 100644
--- a/pkgs/development/python-modules/pyppeteer/default.nix
+++ b/pkgs/development/python-modules/pyppeteer/default.nix
@@ -2,7 +2,6 @@
 , appdirs
 , buildPythonPackage
 , fetchFromGitHub
-, fetchpatch
 , poetry-core
 , pyee
 , pytest-xdist
@@ -16,7 +15,7 @@
 
 buildPythonPackage rec {
   pname = "pyppeteer";
-  version = "0.2.5";
+  version = "0.2.6";
   disabled = pythonOlder "3.6";
   format = "pyproject";
 
@@ -24,7 +23,7 @@ buildPythonPackage rec {
     owner = pname;
     repo = pname;
     rev = version;
-    sha256 = "1hl4rw8j5yiak0d34vx1l1blr8125bscjd8m46a5m8xzm98csjc7";
+    sha256 = "sha256-mMFQp8GMjKUc3yyB4c8Tgxut7LkMFa2cySO3iSA/aI4=";
   };
 
   nativeBuildInputs = [
@@ -45,21 +44,6 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  patches = [
-    # Switch to poetry-core, https://github.com/pyppeteer/pyppeteer/pull/262
-    (fetchpatch {
-      name = "switch-poetry-core.patch";
-      url = "https://github.com/pyppeteer/pyppeteer/commit/e248baebefcf262fd96f261d940e74ed49ba2df9.patch";
-      sha256 = "03g8n35kn2alqki37s0hf2231fk2zkr4nr1x1g2rfrhps9d6fyvw";
-    })
-  ];
-
-  postPatch = ''
-    # https://github.com/pyppeteer/pyppeteer/pull/252
-    substituteInPlace pyproject.toml \
-      --replace 'websockets = "^8.1"' 'websockets = "*"'
-  '';
-
   disabledTestPaths = [
     # Requires network access
     "tests/test_browser.py"