depot/third_party/nixpkgs/pkgs/development/python-modules/feedfinder2/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

42 lines
714 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
six,
requests,
beautifulsoup4,
}:
buildPythonPackage rec {
pname = "feedfinder2";
version = "0.0.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NwHuAabIX4uGWgScMLoLRgiFjIA/6OMNHSif2+idDv4=";
};
build-system = [ setuptools ];
dependencies = [
six
requests
beautifulsoup4
];
# no tests
doCheck = false;
pythonImportsCheck = [ "feedfinder2" ];
meta = with lib; {
description = "Python library for finding feed links on websites";
homepage = "https://github.com/dfm/feedfinder2";
license = licenses.mit;
maintainers = with maintainers; [ vizid ];
};
}