diff options
| author | Mario Rodas <marsam@users.noreply.github.com> | 2023-06-16 04:20:00 +0000 |
|---|---|---|
| committer | Mario Rodas <marsam@users.noreply.github.com> | 2023-06-16 04:20:00 +0000 |
| commit | 5850ef20c32ebd2e95574f8274825be1a42150b9 (patch) | |
| tree | ded5b8c869fca5e78097087411bf5372d7217fe4 /pkgs/development/python-modules/python-utils | |
| parent | 4a9e97d808ec8dc6fd97013df6fc2925f61a10c1 (diff) | |
python310Packages.python-utils: 3.5.2 -> 3.6.0
Diff: https://github.com/WoLpH/python-utils/compare/refs/tags/v3.5.2...v3.6.0
Changelog: https://github.com/wolph/python-utils/releases/tag/v3.6.0
Diffstat (limited to 'pkgs/development/python-modules/python-utils')
| -rw-r--r-- | pkgs/development/python-modules/python-utils/default.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix index 35194318a2cb..6b367f9b82e3 100644 --- a/pkgs/development/python-modules/python-utils/default.nix +++ b/pkgs/development/python-modules/python-utils/default.nix @@ -6,20 +6,21 @@ , pytest-asyncio , pytestCheckHook , pythonOlder +, typing-extensions }: buildPythonPackage rec { pname = "python-utils"; - version = "3.5.2"; + version = "3.6.0"; format = "setuptools"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "WoLpH"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-FFBWkq7ct4JWSTH4Ldg+pbG/BAiW33puB7lqFPBjptw="; + hash = "sha256-D4HmmXIiy1mOEE7lxy9ddeqMxR8l1+k8WgDFPeTVHUE="; }; postPatch = '' @@ -28,6 +29,10 @@ buildPythonPackage rec { -e '/--mypy/d' ''; + propagatedBuildInputs = [ + typing-extensions + ]; + passthru.optional-dependencies = { loguru = [ loguru |
