depot/third_party/nixpkgs/pkgs/development/python-modules/treq/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

62 lines
925 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
# build-system
incremental,
setuptools,
# dependenices
attrs,
hyperlink,
requests,
twisted,
# tests
httpbin,
}:
buildPythonPackage rec {
pname = "treq";
version = "24.9.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Fdp/xATz5O1Z0Kvl+O70lm+rvmGAOaKiO8fBUwXO/qg=";
};
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 = [ ];
};
}