1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/python-modules/vcrpy/default.nix

51 lines
915 B
Nix
Raw Normal View History

2017-04-27 02:29:59 -04:00
{ buildPythonPackage
, lib
2017-05-01 03:11:52 -04:00
, six
, fetchPypi
2017-04-27 02:29:59 -04:00
, pyyaml
, mock
, contextlib2
, wrapt
2017-05-01 03:11:52 -04:00
, pytest
2017-04-27 02:29:59 -04:00
, httpbin
, pytest-httpbin
, yarl
2017-05-01 03:11:52 -04:00
, pythonOlder
, pythonAtLeast
2017-04-27 02:29:59 -04:00
}:
2017-04-25 06:41:28 -04:00
2017-04-27 02:29:59 -04:00
buildPythonPackage rec {
2017-05-01 03:11:52 -04:00
pname = "vcrpy";
2017-06-01 12:13:24 -04:00
version = "1.11.1";
2017-05-01 03:11:52 -04:00
name = "${pname}-${version}";
2017-04-25 06:41:28 -04:00
2017-05-01 03:11:52 -04:00
src = fetchPypi {
inherit pname version;
2017-06-01 12:13:24 -04:00
sha256 = "f434fe7e05d940d576ac850709ae57a738ba40e7f317076ea8d359ced5b32320";
2017-04-25 06:41:28 -04:00
};
2017-05-01 03:11:52 -04:00
checkInputs = [
pytest
2017-04-25 06:41:28 -04:00
pytest-httpbin
];
2017-05-01 03:11:52 -04:00
propagatedBuildInputs = [
pyyaml
wrapt
six
]
++ lib.optionals (pythonOlder "3.3") [ contextlib2 mock ]
++ lib.optionals (pythonAtLeast "3.4") [ yarl ];
2017-04-27 02:29:59 -04:00
checkPhase = ''
2017-05-01 03:11:52 -04:00
py.test --ignore=tests/integration -k "not TestVCRConnection"
2017-04-27 02:29:59 -04:00
'';
2017-04-25 06:41:28 -04: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;
};
}