From 8443067e44cac135ff59abde4bdc2b4445f73c61 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Sun, 13 Dec 2015 16:07:48 +0100 Subject: [PATCH] betamax-matchers: init at 0.2.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0c38cc760d94..de3d3dbea3a2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1305,6 +1305,25 @@ in modules // { }; }; + betamax-matchers = buildPythonPackage rec { + name = "betamax-matchers-${version}"; + version = "0.2.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz"; + sha256 = "13n2dy8s2jx8x8bbx684bff3444584bnmg0zhkfxhxndpy18p4is"; + }; + + buildInputs = with self; [ betamax requests_toolbelt ]; + + meta = with stdenv.lib; { + homepage = https://github.com/sigmavirus24/betamax_matchers; + description = "A group of experimental matchers for Betamax"; + license = licenses.asl20; + maintainers = with maintainers; [ pSub ]; + }; + }; + caldavclientlibrary-asynk = buildPythonPackage rec { version = "asynkdev"; name = "caldavclientlibrary-asynk-${version}";