diff --git a/pkgs/development/python-modules/aioshutil/default.nix b/pkgs/development/python-modules/aioshutil/default.nix new file mode 100644 index 000000000000..a76bba9c0ac2 --- /dev/null +++ b/pkgs/development/python-modules/aioshutil/default.nix @@ -0,0 +1,50 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytest-asyncio +, pytestCheckHook +, pythonOlder +, setuptools-scm +}: + +buildPythonPackage rec { + pname = "aioshutil"; + version = "1.1"; + format = "pyproject"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "kumaraditya303"; + repo = pname; + rev = "v${version}"; + hash = "sha256-CQIzNu1NrGDOh2uVif/EzB5C5t/Y/h9oT56Gp6jrOPQ="; + }; + + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools-scm + ]; + + checkInputs = [ + pytest-asyncio + pytestCheckHook + ]; + + postPatch = '' + substituteInPlace setup.cfg \ + --replace " --cov aioshutil --cov-report xml" "" + ''; + + pythonImportsCheck = [ + "aioshutil" + ]; + + meta = with lib; { + description = "Asynchronous version of function of shutil module"; + homepage = "https://github.com/kumaraditya303/aioshutil"; + license = with licenses; [ bsd3 ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c2dfd23222dd..3f2c31e327e2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -403,6 +403,8 @@ in { aioshelly = callPackage ../development/python-modules/aioshelly { }; + aioshutil = callPackage ../development/python-modules/aioshutil { }; + aiosignal = callPackage ../development/python-modules/aiosignal { }; aioslimproto = callPackage ../development/python-modules/aioslimproto { };