linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / yarl / default.nix
blob0aeb85e6ca2d6fdf08c0a4d12479ffc67ace41ab
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pythonOlder
5 , multidict
6 , pytestrunner
7 , pytest
8 , typing-extensions
9 , idna
12 buildPythonPackage rec {
13   pname = "yarl";
14   version = "1.6.3";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10";
19   };
21   checkInputs = [ pytest pytestrunner ];
22   propagatedBuildInputs = [ multidict idna ]
23     ++ lib.optionals (pythonOlder "3.8") [
24       typing-extensions
25     ];
27   meta = with lib; {
28     description = "Yet another URL library";
29     homepage = "https://github.com/aio-libs/yarl/";
30     license = licenses.asl20;
31     maintainers = with maintainers; [ dotlambda ];
32   };