nixpkgs/pkgs/development/python-modules/treq/default.nix
2021-06-22 13:42:43 +02:00

57 lines
1.2 KiB
Nix

{ lib, fetchPypi, buildPythonPackage, service-identity, requests, six
, mock, twisted, incremental, pep8, httpbin
}:
buildPythonPackage rec {
pname = "treq";
version = "21.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "02ea86383fc4b57539c45a965eaa1e9fd28302cdf382d21da8430050c97be9b8";
};
propagatedBuildInputs = [
requests
six
incremental
service-identity
twisted
]
# twisted [tls] requirements (we should find a way to list "extras")
++ twisted.extras.tls;
checkInputs = [
pep8
mock
httpbin
];
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 = ''
pep8 --ignore=E902 treq
trial treq
'';
# Failing tests https://github.com/twisted/treq/issues/208
doCheck = false;
meta = with lib; {
homepage = "https://github.com/twisted/treq";
description = "A requests-like API built on top of twisted.web's Agent";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}