depot/third_party/nixpkgs/pkgs/development/python-modules/treq/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

62 lines
944 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
# build-system
incremental,
setuptools,
# dependenices
attrs,
hyperlink,
requests,
twisted,
# tests
httpbin,
}:
buildPythonPackage rec {
pname = "treq";
version = "23.11.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-CRT/kp/RYyzhZ5cjUmD4vBnSD/fEWcHeq9ZbjGjL6sU=";
};
nativeBuildInputs = [
incremental
setuptools
];
propagatedBuildInputs = [
attrs
hyperlink
incremental
requests
twisted
] ++ twisted.optional-dependencies.tls;
nativeCheckInputs = [
httpbin
twisted
];
checkPhase = ''
runHook preCheck
trial treq
runHook postCheck
'';
meta = with lib; {
homepage = "https://github.com/twisted/treq";
description = "Requests-like API built on top of twisted.web's Agent";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}