Files
nixpkgs/pkgs/development/python-modules/proxy-db/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

58 lines
1.0 KiB
Nix

{ 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";
mainProgram = "proxy-db";
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 ];
};
}