We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96d2e75 commit 931899fCopy full SHA for 931899f
pkgs/development/python-modules/oslo-log/default.nix
@@ -3,6 +3,7 @@
3
stdenv,
4
buildPythonPackage,
5
fetchFromGitHub,
6
+ fetchpatch,
7
8
# build-system
9
setuptools,
@@ -35,6 +36,14 @@ buildPythonPackage rec {
35
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)
49
PBR_VERSION = version;
0 commit comments