nixpkgs/pkgs/development/python-modules/httplib2/default.nix

54 lines
982 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2021-02-13 17:45:46 +00:00
, fetchFromGitHub
, isPy27
, mock
, pyparsing
2021-02-13 17:45:46 +00:00
, pytest-forked
, pytest-randomly
, pytest-timeout
, pytest-xdist
, pytestCheckHook
, six
}:
2018-05-01 12:24:41 +01:00
buildPythonPackage rec {
pname = "httplib2";
version = "0.19.0";
2018-05-01 12:24:41 +01:00
2021-02-13 17:45:46 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "04y2bc2yv3q84llxnafqrciqxjqpxbrd8glbnvvr16c20fwc3r4q";
2018-05-01 12:24:41 +01:00
};
2021-02-13 17:45:46 +00:00
postPatch = ''
sed -i "/--cov/d" setup.cfg
'';
propagatedBuildInputs = [ pyparsing ];
2021-02-13 17:45:46 +00:00
checkInputs = [
mock
pytest-forked
pytest-randomly
pytest-timeout
pytest-xdist
six
pytestCheckHook
];
# Don't run tests for Python 2.7
doCheck = !isPy27;
pytestFlagsArray = [ "--ignore python2" ];
pythonImportsCheck = [ "httplib2" ];
2019-02-14 07:37:17 +00:00
2018-05-01 12:24:41 +01:00
meta = with lib; {
description = "A comprehensive HTTP client library";
2021-02-13 17:45:46 +00:00
homepage = "https://httplib2.readthedocs.io";
2018-05-01 12:24:41 +01:00
license = licenses.mit;
2021-02-13 17:45:46 +00:00
maintainers = with maintainers; [ fab ];
2018-05-01 12:24:41 +01:00
};
}