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

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

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

  propagatedBuildInputs = [ requests ];

  doCheck = false;

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