mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
pythonPackages.html5lib: fix missing buildInputs and tests
This commit is contained in:
parent
9f5e022663
commit
849f2d9e11
@ -12514,12 +12514,14 @@ in {
|
||||
sha256 = "09j6194f5mlnd5xwbavwvnndwl1x91jw74shxl6hcxjp4fxg3h05";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ nose flake8 ];
|
||||
buildInputs = with self; [ flake8 pytest pytest-expect mock ];
|
||||
propagatedBuildInputs = with self; [
|
||||
six
|
||||
six webencodings
|
||||
] ++ optionals isPy26 [ ordereddict ];
|
||||
|
||||
checkPhase = "nosetests";
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/html5lib/html5lib-python;
|
||||
|
Loading…
Reference in New Issue
Block a user