anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / requestsexceptions / default.nix
blobd545693191273c444628920c33c4bd9b481a9069
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pbr,
6 }:
8 buildPythonPackage rec {
9   pname = "requestsexceptions";
10   version = "1.4.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "b095cbc77618f066d459a02b137b020c37da9f46d9b057704019c9f77dba3065";
16   };
18   propagatedBuildInputs = [ pbr ];
20   # upstream hacking package is not required for functional testing
21   patchPhase = ''
22     sed -i '/^hacking/d' test-requirements.txt
23   '';
25   meta = with lib; {
26     description = "Import exceptions from potentially bundled packages in requests";
27     homepage = "https://pypi.python.org/pypi/requestsexceptions";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ makefu ];
30     platforms = platforms.all;
31   };