python3Packages.drf-nested-routers: 0.93.4 -> 0.94.2 (#411260)

authored by Wolfgang Walther and committed by GitHub ce72a12f 57713fbe

+3 -19
+3 -19
pkgs/development/python-modules/drf-nested-routers/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 django, 7 6 djangorestframework, 8 7 pytestCheckHook, ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "drf-nested-routers"; 15 - version = "0.93.4"; 14 + version = "0.94.2"; 16 15 format = "setuptools"; 17 16 18 17 src = fetchFromGitHub { 19 18 owner = "alanjds"; 20 19 repo = "drf-nested-routers"; 21 20 tag = "v${version}"; 22 - hash = "sha256-qlXNDydoQJ9FZB6G7yV/pNmx3BEo+lvRqsfjrvlbdNY="; 21 + hash = "sha256-ETRj14xoSv3fGXggg+P7651ZhbsEkxUaTO7ZPpKidRA="; 23 22 }; 24 23 25 - patches = [ 26 - # django4 compatibility 27 - (fetchpatch { 28 - url = "https://github.com/alanjds/drf-nested-routers/commit/59764cc356f7f593422b26845a9dfac0ad196120.patch"; 29 - hash = "sha256-mq3vLHzQlGl2EReJ5mVVQMMcYgGIVt/T+qi1STtQ0aI="; 30 - }) 31 - (fetchpatch { 32 - url = "https://github.com/alanjds/drf-nested-routers/commit/723a5729dd2ffcb66fe315f229789ca454986fa4.patch"; 33 - hash = "sha256-UCbBjwlidqsJ9vEEWlGzfqqMOr0xuB2TAaUxHsLzFfU="; 34 - }) 35 - (fetchpatch { 36 - url = "https://github.com/alanjds/drf-nested-routers/commit/38e49eb73759bc7dcaaa9166169590f5315e1278.patch"; 37 - hash = "sha256-IW4BLhHHhXDUZqHaXg46qWoQ89pMXv0ZxKjOCTnDcI0="; 38 - }) 39 - ]; 40 - 41 24 buildInputs = [ django ]; 42 25 43 26 propagatedBuildInputs = [ djangorestframework ]; ··· 50 33 51 34 meta = with lib; { 52 35 homepage = "https://github.com/alanjds/drf-nested-routers"; 36 + changelog = "https://github.com/alanjds/drf-nested-routers/blob/v${version}/CHANGELOG.md"; 53 37 description = "Provides routers and fields to create nested resources in the Django Rest Framework"; 54 38 license = licenses.asl20; 55 39 maintainers = with maintainers; [ felschr ];