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

49 lines
872 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";
2019-11-11 11:13:42 +00:00
version = "2.1.1";
2017-04-25 10:41:28 +00:00
2017-05-01 07:11:52 +00:00
src = fetchPypi {
inherit pname version;
2019-11-11 11:13:42 +00:00
sha256 = "27cc696df66d77703eab5cdfa041b2f9877bbf2b54bcd390de89a4be964ca536";
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;
};
}