linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / httmock / default.nix
blobcbf6b95ccd3654f822edc4685bbba4bdcd3a8b26
1 { lib, buildPythonPackage, fetchFromGitHub, requests }:
3 buildPythonPackage rec {
4   pname   = "httmock";
5   version = "1.3.0";
7   src = fetchFromGitHub {
8     owner = "patrys";
9     repo = "httmock";
10     rev = version;
11     sha256 = "1dy7pjq4gz476jcnbbpzk8w8qxr9l8wwgw9x2c7lf6fzsgnf404q";
12   };
14   checkInputs = [ requests ];
16   meta = with lib; {
17     description = "A mocking library for requests";
18     homepage    = "https://github.com/patrys/httmock";
19     license     = licenses.asl20;
20     maintainers = with maintainers; [ nyanloutre ];
21   };