mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
python310Packages.requests-wsgi-adapter: init at 0.4.1
This commit is contained in:
parent
46f98c157d
commit
b4c4869942
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -9380,6 +9380,8 @@ in {
|
||||
|
||||
requests-unixsocket = callPackage ../development/python-modules/requests-unixsocket { };
|
||||
|
||||
requests-wsgi-adapter = callPackage ../development/python-modules/requests-wsgi-adapter { };
|
||||
|
||||
requirements-detector = callPackage ../development/python-modules/requirements-detector { };
|
||||
|
||||
requirements-parser = callPackage ../development/python-modules/requirements-parser { };
|
||||
|
Loading…
Reference in New Issue
Block a user