depot/third_party/nixpkgs/pkgs/development/python-modules/treq/default.nix

62 lines
926 B
Nix
Raw Normal View History

{ 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; [ ];
};
}