Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / requestsexceptions / default.nix
blob5530c2ecd48cb9cea90f45971c7756453c6c86de
1 { lib, buildPythonPackage, fetchPypi, pbr }:
3 buildPythonPackage rec {
4   pname = "requestsexceptions";
5   version = "1.4.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "b095cbc77618f066d459a02b137b020c37da9f46d9b057704019c9f77dba3065";
11   };
13   propagatedBuildInputs = [ pbr ];
15   # upstream hacking package is not required for functional testing
16   patchPhase = ''
17     sed -i '/^hacking/d' test-requirements.txt
18   '';
20   meta = with lib; {
21     description = "Import exceptions from potentially bundled packages in requests.";
22     homepage = "https://pypi.python.org/pypi/requestsexceptions";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ makefu ];
25     platforms = platforms.all;
26   };