lol
at 23.05-pre 21 lines 554 B view raw
1{ lib, 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 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}