Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / betamax-matchers / default.nix
blob459d3c51d7edf0239bc250aed671696e4c101e49
1 { lib, buildPythonPackage, fetchPypi
2 , betamax, requests_toolbelt }:
4 buildPythonPackage rec {
5   pname = "betamax-matchers";
6   version = "0.4.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
11   };
13   buildInputs = [ betamax requests_toolbelt ];
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   };