diff options
Diffstat (limited to 'pkgs/development/python-modules/pyoctoprintapi/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pyoctoprintapi/default.nix | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/pyoctoprintapi/default.nix b/pkgs/development/python-modules/pyoctoprintapi/default.nix index 8dfd9cdf57f3..4fecaf44b439 100644 --- a/pkgs/development/python-modules/pyoctoprintapi/default.nix +++ b/pkgs/development/python-modules/pyoctoprintapi/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + setuptools, -# propagated -, aiohttp + # propagated + aiohttp, -# tests -, pytest-asyncio -, pytestCheckHook + # tests + pytest-asyncio, + pytestCheckHook, }: let @@ -29,17 +30,11 @@ buildPythonPackage { hash = "sha256-DKqkT0Wyxf4grXBqei9IYBGMOgPxjzuo955M/nHDLo8="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - aiohttp - ]; + propagatedBuildInputs = [ aiohttp ]; - pythonImportsCheck = [ - "pyoctoprintapi" - ]; + pythonImportsCheck = [ "pyoctoprintapi" ]; nativeCheckInputs = [ pytest-asyncio @@ -51,6 +46,6 @@ buildPythonPackage { homepage = "https://github.com/rfleming71/pyoctoprintapi"; changelog = "https://github.com/rfleming71/pyoctoprintapi/releases/tag/v${version}"; license = licenses.mit; - maintainers= with maintainers; [ hexa ]; + maintainers = with maintainers; [ hexa ]; }; } |
