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