summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/requests-wsgi-adapter/default.nix
blob: 4996883f4e0c3ec0f05ee08880ab0ab80150dfdf (plain)
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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
}:

buildPythonPackage rec {
  pname = "requests-wsgi-adapter";
  version = "0.4.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-WncJ6Qq/SdGB9sMqo3eUU39yXeD23UI2K8jIyQgSyHg=";
  };

  propagatedBuildInputs = [ requests ];

  # tests are not contained in pypi-release
  doCheck = false;

  meta = {
    description = "WSGI Transport Adapter for Requests";
    homepage = "https://github.com/seanbrant/requests-wsgi-adapter";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ betaboon ];
  };
}