Merge pull request #168738 from SuperSandro2000/mutagen

python310Packages.mutagen: fix default output not containg code
This commit is contained in:
Martin Weinelt 2022-04-15 04:23:18 +02:00 committed by GitHub
commit a78f962c1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,10 +25,7 @@ buildPythonPackage rec {
sha256 = "6397602efb3c2d7baebd2166ed85731ae1c1d475abca22090b7141ff5034b3e1"; sha256 = "6397602efb3c2d7baebd2166ed85731ae1c1d475abca22090b7141ff5034b3e1";
}; };
outputs = [ outputs = [ "out" "doc" ];
"doc"
"out"
];
nativeBuildInputs = [ nativeBuildInputs = [
sphinx sphinx
@ -69,6 +66,5 @@ buildPythonPackage rec {
homepage = "https://mutagen.readthedocs.io"; homepage = "https://mutagen.readthedocs.io";
changelog = "https://mutagen.readthedocs.io/en/latest/changelog.html#release-${lib.replaceStrings [ "." ] [ "-" ] version}"; changelog = "https://mutagen.readthedocs.io/en/latest/changelog.html#release-${lib.replaceStrings [ "." ] [ "-" ] version}";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.all;
}; };
} }