Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 587 B view raw
1{ stdenv 2, fetchPypi 3, buildPythonPackage 4, multidict 5, pytestrunner 6, pytest 7, idna 8}: 9 10buildPythonPackage rec { 11 pname = "yarl"; 12 version = "1.3.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "024ecdc12bc02b321bc66b41327f930d1c2c543fa9a561b39861da9388ba7aa9"; 17 }; 18 19 checkInputs = [ pytest pytestrunner ]; 20 propagatedBuildInputs = [ multidict idna ]; 21 22 meta = with stdenv.lib; { 23 description = "Yet another URL library"; 24 homepage = https://github.com/aio-libs/yarl/; 25 license = licenses.asl20; 26 maintainers = with maintainers; [ dotlambda ]; 27 }; 28}