Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "betamax"; 5 version = "0.8.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1hki1c2vs7adq7zr56wi6i5bhrkia4s2ywpv2c98ibnczz709w2v"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 doCheck = false; 15 16 meta = with lib; { 17 homepage = "https://betamax.readthedocs.org/en/latest/"; 18 description = "A VCR imitation for requests"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ pSub ]; 21 }; 22}