Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python312Packages.freeproxy: init at 1.1.1 #325628

Merged
merged 3 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/free-proxy/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ lib,
fetchPypi,
fetchFromGitHub,
buildPythonPackage,
setuptools,
lxml,
requests,
}:

buildPythonPackage rec {
pname = "free-proxy";
version = "1.1.1";
pyproject = true;

src = fetchFromGitHub {
owner = "jundymerk";
repo = "free-proxy";
rev = "refs/tags/v${version}";
hash = "sha256-1hTOMbsL1089/yPZbAIs5OgjtEzCBlFv2hGi+u4hV/k=";
};

build-system = [ setuptools ];

dependencies = [
lxml
requests
];

meta = {
description = "Free proxy scraper written in python";
homepage = "https://github.com/jundymek/free-proxy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tochiaha ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4536,6 +4536,8 @@ self: super: with self; {

font-v = callPackage ../development/python-modules/font-v { };

free-proxy = callPackage ../development/python-modules/free-proxy { };

skia-pathops = callPackage ../development/python-modules/skia-pathops {
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL;
};
Expand Down