Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkgs/development/python-modules/anyio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ buildPythonPackage rec {
"test_nonexistent_main_module"
# 3 second timeout expired
"test_keyboardinterrupt_during_test"

# These tests might also be flaky due to heavy load
"test_run_sync_from_thread_pooling"
"test_single_thread"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# PermissionError: [Errno 1] Operation not permitted: '/dev/console'
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pygments/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
let
pygments = buildPythonPackage rec {
pname = "pygments";
version = "2.19.1";
version = "2.19.2";
pyproject = true;

disabled = pythonOlder "3.8"; # 2.18.0 requirement

src = fetchPypi {
inherit pname version;
hash = "sha256-YcFtKoV23AZJ2fOeCJtfArzSf7oQ2PtNzCgXP3pFFR8=";
hash = "sha256-Y2yyR3zsf4lSU2lwvFM7xDdDVC9wOSrgJjdGAK3VuIc=";
};

nativeBuildInputs = [ hatchling ];
Expand Down
6 changes: 2 additions & 4 deletions pkgs/development/python-modules/textual/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

buildPythonPackage rec {
pname = "textual";
version = "4.0.0";
version = "5.0.0";
pyproject = true;

src = fetchFromGitHub {
owner = "Textualize";
repo = "textual";
tag = "v${version}";
hash = "sha256-rVDr4Snp5qnErxWRM9yoxnzzX8gg8nD3RbBkL1rmgqI=";
hash = "sha256-XzKt2RA5MRXFiONQs892kisPIAuKnuTDz9py0+I4YeQ=";
};

build-system = [ poetry-core ];
Expand Down Expand Up @@ -95,7 +95,5 @@ buildPythonPackage rec {
changelog = "https://github.com/Textualize/textual/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gepbird ];
# https://github.com/Textualize/textual/issues/5868
broken = true;
};
}
Loading