10 buildPythonPackage rec {
11 pname = "python-fsutil";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "fabiocaccamo";
19 repo = "python-fsutil";
20 rev = "refs/tags/${version}";
21 hash = "sha256-Cs78zpf3W5UZJkkUBEP6l6fi2J4OtJXGvqqQ8PWKx+8=";
28 propagatedBuildInputs = [
41 # Tests require network access
43 "test_read_file_from_url"
46 pythonImportsCheck = [
51 description = "Module with file-system utilities";
52 homepage = "https://github.com/fabiocaccamo/python-fsutil";
53 changelog = "https://github.com/fabiocaccamo/python-fsutil/blob/${version}/CHANGELOG.md";
54 license = licenses.mit;
55 maintainers = with maintainers; [ fab ];