1{ stdenv, buildPythonPackage, fetchPypi
2, betamax, requests_toolbelt }:
3
4buildPythonPackage rec {
5 pname = "betamax-matchers";
6 version = "0.4.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
11 };
12
13 buildInputs = [ betamax requests_toolbelt ];
14
15 meta = with stdenv.lib; {
16 homepage = https://github.com/sigmavirus24/betamax_matchers;
17 description = "A group of experimental matchers for Betamax";
18 license = licenses.asl20;
19 maintainers = with maintainers; [ pSub ];
20 };
21}