about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/requests-wsgi-adapter/default.nix
blob: 77386c21a86989f3313ab37d31f9ce4df2d527bc (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
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:

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

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

  propagatedBuildInputs = [
    requests
  ];

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

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