Merge pull request #38147 from xeji/python-kmsxx

pythonPackages.kmsxx: fix build
This commit is contained in:
Robert Schütz 2018-04-08 23:29:25 +02:00 committed by GitHub
commit 17bfcb5677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11892,7 +11892,11 @@ in {
pika-pool = callPackage ../development/python-modules/pika-pool { };
platformio = callPackage ../development/python-modules/platformio { };
kmsxx = callPackage ../development/libraries/kmsxx { };
kmsxx = (callPackage ../development/libraries/kmsxx {
inherit (pkgs.kmsxx) stdenv;
}).overrideAttrs (oldAttrs: {
name = "${python.libPrefix}-${pkgs.kmsxx.name}";
});
pybase64 = callPackage ../development/python-modules/pybase64 { };