Merge pull request #171880 from SuperSandro2000/treq

python310Packages.treq: adopt, enable tests, cleanup dependencies
main
Sandro 2 years ago committed by GitHub
commit a2543aa2a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 38
      pkgs/development/python-modules/treq/default.nix

@ -1,5 +1,10 @@
{ lib, fetchPypi, buildPythonPackage, service-identity, requests, six { lib
, mock, twisted, incremental, pep8, httpbin , fetchPypi
, buildPythonPackage
, requests
, twisted
, incremental
, httpbin
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,44 +18,23 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
six
incremental incremental
service-identity
twisted twisted
] ] ++ twisted.extras.tls;
# twisted [tls] requirements (we should find a way to list "extras")
++ twisted.extras.tls;
checkInputs = [ checkInputs = [
pep8
mock
httpbin httpbin
twisted
]; ];
postPatch = ''
rm -fv src/treq/test/test_treq_integration.py
'';
# XXX tox tries to install coverage despite it is installed
#postBuild = ''
# # build documentation and install in $out
# tox -e docs
# mkdir -pv $out/docs
# cp -rv docs/* $out/docs/
#'';
checkPhase = '' checkPhase = ''
pep8 --ignore=E902 treq
trial treq trial treq
''; '';
# Failing tests https://github.com/twisted/treq/issues/208
doCheck = false;
meta = with lib; { meta = with lib; {
homepage = "https://github.com/twisted/treq"; homepage = "https://github.com/twisted/treq";
description = "A requests-like API built on top of twisted.web's Agent"; description = "Requests-like API built on top of twisted.web's Agent";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ SuperSandro2000 ];
}; };
} }

Loading…
Cancel
Save