python3Packages.oslo-context: 5.7.1 -> 6.0.0 (#410090)

authored by Sandro and committed by GitHub 9eccdb4e a4577213

+13 -4
+4 -4
pkgs/development/python-modules/oslo-context/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - debtcollector, 6 5 oslotest, 7 6 stestr, 8 7 pbr, 9 8 setuptools, 9 + typing-extensions, 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "oslo-context"; 14 - version = "5.7.1"; 14 + version = "6.0.0"; 15 15 pyproject = true; 16 16 17 17 src = fetchPypi { 18 18 inherit version; 19 19 pname = "oslo_context"; 20 - hash = "sha256-DFEf4VNzKv8MGztEq9L1EAioPHB7uSm+4B4SVayWSIk="; 20 + hash = "sha256-FR6CKJgtOIXtP+0ojozdsm+JT7QMuBMhKfqeWz4O8L0="; 21 21 }; 22 22 23 23 postPatch = '' ··· 29 29 build-system = [ setuptools ]; 30 30 31 31 dependencies = [ 32 - debtcollector 33 32 pbr 33 + typing-extensions 34 34 ]; 35 35 36 36 nativeCheckInputs = [
+9
pkgs/development/python-modules/oslo-log/default.nix
··· 3 3 stdenv, 4 4 buildPythonPackage, 5 5 fetchFromGitHub, 6 + fetchpatch, 6 7 7 8 # build-system 8 9 setuptools, ··· 34 35 tag = version; 35 36 hash = "sha256-ybWrNwP9L7iOzft10TgRFxA4mCRDVozVC2ZAopgITqo="; 36 37 }; 38 + 39 + patches = [ 40 + # remove removed alias from tests 41 + (fetchpatch { 42 + url = "https://github.com/openstack/oslo.log/commit/69a285a8c830712b4b8aafc8ecd4e2d7654e1ffe.patch"; 43 + hash = "sha256-e0kRSHJPHITP/XgPHhY5kGzCupE00oBnCJYiUCs3Yks="; 44 + }) 45 + ]; 37 46 38 47 # Manually set version because prb wants to get it from the git upstream repository (and we are 39 48 # installing from tarball instead)