mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
51 lines
915 B
Nix
51 lines
915 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, six
|
|
, fetchPypi
|
|
, pyyaml
|
|
, mock
|
|
, contextlib2
|
|
, wrapt
|
|
, pytest
|
|
, httpbin
|
|
, pytest-httpbin
|
|
, yarl
|
|
, pythonOlder
|
|
, pythonAtLeast
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "vcrpy";
|
|
version = "1.12.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "13c6a835a6dc1ac96d7e6cae03587525eb260d7a46c6e5dd7a25416655eecb3a";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
pytest-httpbin
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
wrapt
|
|
six
|
|
]
|
|
++ lib.optionals (pythonOlder "3.3") [ contextlib2 mock ]
|
|
++ lib.optionals (pythonAtLeast "3.4") [ yarl ];
|
|
|
|
checkPhase = ''
|
|
py.test --ignore=tests/integration -k "not TestVCRConnection"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Automatically mock your HTTP interactions to simplify and speed up testing";
|
|
homepage = https://github.com/kevin1024/vcrpy;
|
|
license = licenses.mit;
|
|
};
|
|
}
|
|
|