1{ lib, buildPythonPackage, fetchPypi, idna, pytestCheckHook }: 2 3buildPythonPackage rec { 4 pname = "rfc3986"; 5 version = "1.5.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835"; 10 }; 11 12 propagatedBuildInputs = [ idna ]; 13 14 checkInputs = [ pytestCheckHook ]; 15 16 meta = with lib; { 17 description = "Validating URI References per RFC 3986"; 18 homepage = "https://rfc3986.readthedocs.org"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ SuperSandro2000 ]; 21 }; 22}