depot/third_party/nixpkgs/pkgs/development/python-modules/betamax-matchers/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
597 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
betamax,
requests-toolbelt,
}:
buildPythonPackage rec {
pname = "betamax-matchers";
version = "0.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
};
buildInputs = [
betamax
requests-toolbelt
];
meta = with lib; {
homepage = "https://github.com/sigmavirus24/betamax_matchers";
description = "Group of experimental matchers for Betamax";
license = licenses.asl20;
maintainers = with maintainers; [ pSub ];
};
}