Files
nixpkgs/pkgs/development/python-modules/free-proxy/default.nix
Bruno BELANYI ace496d150 python3Packages.free-proxy: remove pip-chill dep
It is never imported anywhere in the repository.

I think the maintainer added a dev dependency to their requirements.
2026-07-30 12:53:53 +00:00

40 lines
696 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
lxml,
requests,
}:
buildPythonPackage rec {
pname = "free-proxy";
version = "1.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jundymek";
repo = "free-proxy";
tag = "v${version}";
hash = "sha256-5fvSla4F0epe9XWtvd++RS/IKDTfzgKgU1dYmoZkeZk=";
};
build-system = [ setuptools ];
dependencies = [
lxml
requests
];
pythonRemoveDeps = [
"pip-chill"
];
meta = {
description = "Free proxy scraper written in python";
homepage = "https://github.com/jundymek/free-proxy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tochiaha ];
};
}