pythonPackages.vcrpy: init at 1.10.5
This commit is contained in:
parent
87ce1e73a5
commit
7735348d77
28
pkgs/development/python-modules/vcrpy/default.nix
Normal file
28
pkgs/development/python-modules/vcrpy/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, pkgs, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonPackage rec {
|
||||||
|
version = "1.10.5";
|
||||||
|
name = "vcrpy-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/v/vcrpy/vcrpy-${version}.tar.gz";
|
||||||
|
sha256 = "12kncg6jyvj15mi8ca74514f2x1ih753nhyz769nwvh39r468167";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pythonPackages; [
|
||||||
|
pyyaml
|
||||||
|
mock
|
||||||
|
contextlib2
|
||||||
|
wrapt
|
||||||
|
pytest_27
|
||||||
|
httpbin
|
||||||
|
pytest-httpbin
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Automatically mock your HTTP interactions to simplify and speed up testing";
|
||||||
|
homepage = https://github.com/kevin1024/vcrpy;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -10231,6 +10231,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vcrpy = callPackage ../development/python-modules/vcrpy { };
|
||||||
|
|
||||||
venusian = buildPythonPackage rec {
|
venusian = buildPythonPackage rec {
|
||||||
name = "venusian-1.0";
|
name = "venusian-1.0";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user