summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-24 11:50:56 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-08-24 11:51:10 -0700
commitfc770285db32dbbfa0f37a34176f57ec0da4db2d (patch)
treeafee7fea97293bbd0cdb5d172a25b858757fad19 /pkgs/development/python-modules
parent032324fd20e3be4124ffefd00da5bd66b0550e8c (diff)
python310Packages.libtmux: 0.22.1 -> 0.23.0post0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/libtmux/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix
index 9382ccd36b63..ac07b77bf2b4 100644
--- a/pkgs/development/python-modules/libtmux/default.nix
+++ b/pkgs/development/python-modules/libtmux/default.nix
@@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
-, fetchpatch
, buildPythonPackage
, poetry-core
, pytest-rerunfailures
@@ -13,25 +12,16 @@
buildPythonPackage rec {
pname = "libtmux";
- version = "0.22.1";
+ version = "0.23.0post0";
format = "pyproject";
src = fetchFromGitHub {
owner = "tmux-python";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-tz7Pynm/xHx2X3QjXkvFlX6sVlsVKqrsS1CVmqlqfj0=";
+ hash = "sha256-qk9QYfLVJVtkNgAZ19UziU7metluz10gDs9HbMoqZjo=";
};
- patches = [
- # https://github.com/tmux-python/libtmux/pull/493
- (fetchpatch {
- name = "remove-setuptools.patch";
- url = "https://github.com/tmux-python/libtmux/commit/aa3a1e2015ade73129191ad04146ce52765d478c.patch";
- hash = "sha256-p3KMktd6eG9/lRK+DdBvDtSwhI+sV2RQfBAuElMk8tQ=";
- })
- ];
-
postPatch = ''
sed -i '/addopts/d' setup.cfg
'';