mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
python312Packages.freeproxy: init at 1.1.1 (#325628)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
eec72fd9d1
commit
5a5ad74b7f
35
pkgs/development/python-modules/free-proxy/default.nix
Normal file
35
pkgs/development/python-modules/free-proxy/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4532,6 +4532,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
font-v = callPackage ../development/python-modules/font-v { };
|
font-v = callPackage ../development/python-modules/font-v { };
|
||||||
|
|
||||||
|
free-proxy = callPackage ../development/python-modules/free-proxy { };
|
||||||
|
|
||||||
skia-pathops = callPackage ../development/python-modules/skia-pathops {
|
skia-pathops = callPackage ../development/python-modules/skia-pathops {
|
||||||
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL;
|
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user