2019-01-30 13:03:16 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, requests, beautifulsoup4, pytest, requests-mock,
|
|
|
|
pytestrunner }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "favicon";
|
|
|
|
version = "0.5.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "01jhb66nrqbf22z6ybpi8ndw6zifgysdmnh547027g96nz51669y";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytestrunner ];
|
|
|
|
checkInputs = [ pytest requests-mock ];
|
|
|
|
propagatedBuildInputs = [ requests beautifulsoup4 ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Find a website's favicon";
|
2019-04-15 00:25:45 +01:00
|
|
|
homepage = https://github.com/scottwernervt/favicon;
|
2019-01-30 13:03:16 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ elohmeier ];
|
|
|
|
};
|
|
|
|
}
|