tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python313Packages.fs: fix pyftplib>=1.5.10 compat
Martin Weinelt
1 year ago
4d7e53b8
8107c19c
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
fs
default.nix
+6
-1
pkgs/development/python-modules/fs/default.nix
reviewed
···
8
8
psutil,
9
9
pyftpdlib,
10
10
pytestCheckHook,
11
11
-
pythonAtLeast,
12
11
pythonOlder,
13
12
pytz,
14
13
setuptools,
···
26
25
inherit pname version;
27
26
hash = "sha256-rpfH1RIT9LcLapWCklMCiQkN46fhWEHhCPvhRPBp0xM=";
28
27
};
28
28
+
29
29
+
postPatch = ''
30
30
+
# https://github.com/PyFilesystem/pyfilesystem2/pull/591
31
31
+
substituteInPlace tests/test_ftpfs.py \
32
32
+
--replace ThreadedTestFTPd FtpdThreadWrapper
33
33
+
'';
29
34
30
35
build-system = [ setuptools ];
31
36