mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
pythonPackages.vcrpy: init at 1.10.5
This commit is contained in:
parent
87ce1e73a5
commit
7735348d77
2 changed files with 33 additions and 3 deletions
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 {
|
||||
name = "venusian-1.0";
|
||||
|
||||
|
@ -13200,9 +13202,9 @@ in {
|
|||
license = with licenses; [ lgpl21 ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
iso-639 = callPackage ../development/python-modules/iso-639 {};
|
||||
|
||||
|
||||
iso3166 = callPackage ../development/python-modules/iso3166 {};
|
||||
|
||||
iso8601 = buildPythonPackage rec {
|
||||
|
@ -15612,7 +15614,7 @@ in {
|
|||
|
||||
patches = [
|
||||
(pkgs.fetchpatch {
|
||||
url = https://github.com/drkjam/netaddr/commit/2ab73f10be7069c9412e853d2d0caf29bd624012.patch;
|
||||
url = https://github.com/drkjam/netaddr/commit/2ab73f10be7069c9412e853d2d0caf29bd624012.patch;
|
||||
sha256 = "08rn1s3w9424jhandy4j9sksy852ny00088zh15nirw5ajqg1dn7";
|
||||
})
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue