mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #241533 from misuzu/translatehtml-beautifulsoup4-fix
python310Packages.translatehtml: compatibility with new beautifulsoup4
This commit is contained in:
commit
f92c323976
@ -1,6 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
, argostranslate
|
, argostranslate
|
||||||
, beautifulsoup4
|
, beautifulsoup4
|
||||||
}:
|
}:
|
||||||
@ -16,6 +17,14 @@ buildPythonPackage rec {
|
|||||||
sha256 = "6b30ceb8b6f174917e2660caf2d2ccbaa71d8d24c815316edf56b061d678820d";
|
sha256 = "6b30ceb8b6f174917e2660caf2d2ccbaa71d8d24c815316edf56b061d678820d";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# https://github.com/argosopentech/translate-html/pull/15
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/argosopentech/translate-html/commit/b1c2d210ec1b5fcd0eb79f578bdb5d3ed5c9963a.patch";
|
||||||
|
hash = "sha256-U65vVuRodMS32Aw6PZlLwaCos51P5B88n5hDgJNMZXU=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
argostranslate
|
argostranslate
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
|
Loading…
Reference in New Issue
Block a user