diff options
Diffstat (limited to 'pkgs/development/python-modules/zict/default.nix')
-rw-r--r-- | pkgs/development/python-modules/zict/default.nix | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/zict/default.nix b/pkgs/development/python-modules/zict/default.nix index 4bd3e7692283..b2305bc243fd 100644 --- a/pkgs/development/python-modules/zict/default.nix +++ b/pkgs/development/python-modules/zict/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, pytest-asyncio -, pytest-repeat -, pytest-timeout -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + pytest-asyncio, + pytest-repeat, + pytest-timeout, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -21,9 +22,7 @@ buildPythonPackage rec { hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytest-asyncio @@ -33,7 +32,7 @@ buildPythonPackage rec { ]; meta = with lib; { - description = "Mutable mapping tools."; + description = "Mutable mapping tools"; homepage = "https://github.com/dask/zict"; license = licenses.bsd3; maintainers = with maintainers; [ teh ]; |