504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
30 lines
624 B
Nix
30 lines
624 B
Nix
{ 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 = with lib; {
|
|
description = "WSGI Transport Adapter for Requests";
|
|
homepage = "https://github.com/seanbrant/requests-wsgi-adapter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ betaboon ];
|
|
};
|
|
}
|