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

49 lines
860 B
Nix
Raw Normal View History

2017-04-27 06:29:59 +00:00
{ buildPythonPackage
, lib
2017-05-01 07:11:52 +00:00
, six
, fetchPypi
2017-04-27 06:29:59 +00:00
, pyyaml
, mock
, contextlib2
, wrapt
2017-05-01 07:11:52 +00:00
, pytest
2017-04-27 06:29:59 +00:00
, pytest-httpbin
, yarl
2017-05-01 07:11:52 +00:00
, pythonOlder
, pythonAtLeast
2017-04-27 06:29:59 +00:00
}:
2017-04-25 10:41:28 +00:00
2017-04-27 06:29:59 +00:00
buildPythonPackage rec {
2017-05-01 07:11:52 +00:00
pname = "vcrpy";
version = "2.0.1";
2017-04-25 10:41:28 +00:00
2017-05-01 07:11:52 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0kws7l3hci1dvjv01nxw3805q9v2mwldw58bgl8s90wqism69gjp";
2017-04-25 10:41:28 +00:00
};
2017-05-01 07:11:52 +00:00
checkInputs = [
pytest
2017-04-25 10:41:28 +00:00
pytest-httpbin
];
2017-05-01 07:11:52 +00:00
propagatedBuildInputs = [
pyyaml
wrapt
six
]
++ lib.optionals (pythonOlder "3.3") [ contextlib2 mock ]
++ lib.optionals (pythonAtLeast "3.4") [ yarl ];
2017-04-27 06:29:59 +00:00
checkPhase = ''
2017-05-01 07:11:52 +00:00
py.test --ignore=tests/integration -k "not TestVCRConnection"
2017-04-27 06:29:59 +00:00
'';
2017-04-25 10:41:28 +00:00
meta = with lib; {
description = "Automatically mock your HTTP interactions to simplify and speed up testing";
homepage = https://github.com/kevin1024/vcrpy;
license = licenses.mit;
};
}