about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/betamax/default.nix
blob: d4da87d07433419dcf371624e13c2e312e92fbdc (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.9.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-gjFuFnm8aHnjyDMY0Ba1S3ySJf8IxEYt5IE+IgONX5Q=";
  };

  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 ];
  };
}