Skip to content

Commit

Permalink
pythonPackages.vcrpy: init at 1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbeyer committed Apr 26, 2017
1 parent 87ce1e7 commit 7735348
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/vcrpy/default.nix
@@ -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;
};
}

8 changes: 5 additions & 3 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -10231,6 +10231,8 @@ in {
};
};

vcrpy = callPackage ../development/python-modules/vcrpy { };

venusian = buildPythonPackage rec {
name = "venusian-1.0";

Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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";
})
];
Expand Down

0 comments on commit 7735348

Please sign in to comment.