mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
python.pkgs.bleach: add missing dependency packaging
This commit is contained in:
parent
0dacf1d711
commit
ec618a9120
|
@ -6,6 +6,7 @@
|
|||
, six
|
||||
, html5lib
|
||||
, setuptools
|
||||
, packaging
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -18,11 +19,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [ pytest pytestrunner ];
|
||||
propagatedBuildInputs = [ six html5lib setuptools ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace ",<3dev" ""
|
||||
'';
|
||||
propagatedBuildInputs = [ packaging six html5lib setuptools ];
|
||||
|
||||
# Disable network tests
|
||||
checkPhase = ''
|
||||
|
|
Loading…
Reference in a new issue