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