about summary refs log tree commit diff
path: root/pkgs/development/python-modules/txrequests/default.nix
blob: db158401d3406afc3e273b6fdef839ae276ba8a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  lib,
  buildPythonPackage,
  fetchPypi,
  twisted,
  requests,
  cryptography,
  unittestCheckHook,
}:

buildPythonPackage rec {
  pname = "txrequests";
  version = "0.9.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b452a1cafa4d005678f6fa47922a330feb4907d5b4732d1841ca98e89f1362e1";
  };

  propagatedBuildInputs = [
    twisted
    requests
    cryptography
  ];

  # Require network access
  doCheck = false;

  nativeCheckInputs = [ unittestCheckHook ];

  meta = with lib; {
    description = "Asynchronous Python HTTP for Humans.";
    homepage = "https://github.com/tardyp/txrequests";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}