11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "kumaraditya303";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-hSUNx43sIUPs4YfQ+H39FXTpj3oCMUqRzDdHX2OdRdE=";
26 substituteInPlace setup.cfg \
27 --replace-fail " --cov aioshutil --cov-report xml" ""
30 nativeBuildInputs = [ setuptools-scm ];
37 pythonImportsCheck = [ "aioshutil" ];
40 description = "Asynchronous version of function of shutil module";
41 homepage = "https://github.com/kumaraditya303/aioshutil";
42 license = licenses.bsd3;
43 maintainers = with maintainers; [ fab ];