blob: dab6fcd1d4f288bf183b5fedcdae6d55e89150d5 (
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
24
25
26
27
28
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "betamax";
version = "0.9.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-gjFuFnm8aHnjyDMY0Ba1S3ySJf8IxEYt5IE+IgONX5Q=";
};
propagatedBuildInputs = [ requests ];
doCheck = false;
meta = with lib; {
homepage = "https://betamax.readthedocs.org/en/latest/";
description = "VCR imitation for requests";
license = licenses.asl20;
maintainers = with maintainers; [ pSub ];
};
}
|