Files
nixpkgs/pkgs/development/python-modules/favicon/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

47 lines
857 B
Nix

{
lib,
beautifulsoup4,
buildPythonPackage,
fetchPypi,
pytest7CheckHook,
pythonOlder,
requests,
requests-mock,
}:
buildPythonPackage rec {
pname = "favicon";
version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-bWtaeN4qDQCEWJ9ofzhLLs1qZScJP+xWRAOxowYF16g=";
};
postPatch = ''
sed -i "/pytest-runner/d" setup.py
'';
propagatedBuildInputs = [
beautifulsoup4
requests
];
nativeCheckInputs = [
pytest7CheckHook
requests-mock
];
pythonImportsCheck = [ "favicon" ];
meta = {
description = "Find a website's favicon";
homepage = "https://github.com/scottwernervt/favicon";
changelog = "https://github.com/scottwernervt/favicon/blob/${version}/CHANGELOG.rst";
license = lib.licenses.mit;
};
}