summary refs log tree commit diff
path: root/pkgs/development/python-modules/betamax/default.nix
blob: 8051ed0beff5e6654eb205a96cba41dfeb4e4eeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "betamax";
  version = "0.8.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1hki1c2vs7adq7zr56wi6i5bhrkia4s2ywpv2c98ibnczz709w2v";
  };

  propagatedBuildInputs = [ requests ];

  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://betamax.readthedocs.org/en/latest/;
    description = "A VCR imitation for requests";
    license = licenses.asl20;
    maintainers = with maintainers; [ pSub ];
  };
}