python311Packages.proxy-db: init at 0.3.1
This commit is contained in:
parent
1f8b5a2795
commit
2de435ae54
2 changed files with 58 additions and 0 deletions
56
pkgs/development/python-modules/proxy-db/default.nix
Normal file
56
pkgs/development/python-modules/proxy-db/default.nix
Normal file
|
@ -0,0 +1,56 @@
|
|||
{ lib
|
||||
, beautifulsoup4
|
||||
, buildPythonPackage
|
||||
, click
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
, requests-mock
|
||||
, six
|
||||
, sqlalchemy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "proxy-db";
|
||||
version = "0.3.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Nekmo";
|
||||
repo = "proxy-db";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-NdbvK2sJKKoWNYsuBaCMWtKEvuMhgyKXcKZXQgTC4bY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
beautifulsoup4
|
||||
click
|
||||
requests
|
||||
six
|
||||
sqlalchemy
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
requests-mock
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"proxy_db"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to manage proxies in a local database";
|
||||
homepage = "https://github.com/Nekmo/proxy-db/";
|
||||
changelog = "https://github.com/Nekmo/proxy-db/blob/v${version}/HISTORY.rst";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -8156,6 +8156,8 @@ self: super: with self; {
|
|||
|
||||
proxy_tools = callPackage ../development/python-modules/proxy_tools { };
|
||||
|
||||
proxy-db = callPackage ../development/python-modules/proxy-db { };
|
||||
|
||||
py-nextbusnext = callPackage ../development/python-modules/py-nextbusnext { };
|
||||
|
||||
py65 = callPackage ../development/python-modules/py65 { };
|
||||
|
|
Loading…
Reference in a new issue