Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / torrequest / default.nix
blob90a0ab747a88a63843c32f6077f2e074f33e63d5
1 { lib, buildPythonPackage, fetchPypi, requests, pysocks, stem }:
3 buildPythonPackage rec {
4   pname = "torrequest";
5   version = "0.1.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-N0XU6j/9qY16A0Njx4ets3qrd72rQAlKTZNzks1NroI=";
11   };
13   propagatedBuildInputs = [
14     pysocks requests stem
15   ];
17   # This package does not contain any tests.
18   doCheck = false;
20   pythonImportsCheck = [
21     "torrequest"
22   ];
24   meta = with lib; {
25     homepage = "https://github.com/erdiaker/torrequest";
26     description = "Simple Python interface for HTTP(s) requests over Tor";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ applePrincess ];
29   };